using Modules.Library.WebApi.Models.Anime.CommonProperties; namespace Modules.Library.WebApi.Models.Anime; public class TitleCreate { public MediaInfoEdit? Preview { get; set; } public List Names { get; set; } = []; public List Descriptions { get; set; } = []; public List RelatedContent { get; set; } = []; public List Genres { get; set; } = []; public DateTime? AnnouncementDate { get; set; } public DateTime? EstimatedReleaseDate { get; set; } public DateTime? ReleaseDate { get; set; } }