Co-authored-by: azyges <aaaaaa@aaa.aaa> Co-authored-by: cake <admin@cakeandbanana.nl> Co-authored-by: defnotken <itsdefnotken@gmail.com> Reviewed-on: #131
11 lines
604 B
C#
11 lines
604 B
C#
using System.Collections.Concurrent;
|
|
|
|
namespace LightlessSync.LightlessConfiguration.Configurations;
|
|
|
|
public class XivDataStorageConfig : ILightlessConfiguration
|
|
{
|
|
public ConcurrentDictionary<string, long> TriangleDictionary { get; set; } = new(StringComparer.OrdinalIgnoreCase);
|
|
public ConcurrentDictionary<string, long> EffectiveTriangleDictionary { get; set; } = new(StringComparer.OrdinalIgnoreCase);
|
|
public ConcurrentDictionary<string, Dictionary<string, List<ushort>>> BonesDictionary { get; set; } = new(StringComparer.OrdinalIgnoreCase);
|
|
public int Version { get; set; } = 0;
|
|
} |