using System.Collections.Generic; namespace API.Entities { public class Series { /// /// The UI visible Name of the Series. This may or may not be the same as the OriginalName /// public string Name { get; set; } /// /// Original Japanese Name /// public string OriginalName { get; set; } /// /// The name used to sort the Series. By default, will be the same as Name. /// public string SortName { get; set; } /// /// Summary information related to the Series /// public string Summary { get; set; } public ICollection Volumes { get; set; } } }