using System.Collections.Concurrent; namespace FNZCM.Shared.MediaModels { public class Disc { public string Name { get; } public Disc(string name) => Name = name; public ConcurrentDictionary Bks { get; } = new(); public ConcurrentDictionary MainTracks { get; } = new(); public ConcurrentDictionary SubTracks { get; } = new(); } }