Library.cs 281 B

12345678910111213
  1. using System.Collections.Concurrent;
  2. namespace FNZCM.Shared.MediaModels
  3. {
  4. public class Library
  5. {
  6. public Library(string name) => Name = name;
  7. public string Name { get; }
  8. public ConcurrentDictionary<string, Disc> Discs { get; } = new();
  9. }
  10. }