using JSMR.Domain.Enums; namespace JSMR.Application.Scanning.Contracts; public class DLSiteWork { public DLSiteWorkType Type { get; set; } public DLSiteWorkCategory Category { get; set; } public required string ProductName { get; set; } public required string ProductId { get; set; } public DateOnly? AnnouncedDate { get; set; } public DateOnly? ExpectedDate { get; set; } public DateOnly? SalesDate { get; set; } public int Downloads { get; set; } public byte? StarRating { get; set; } public int? Votes { get; set; } public required string Maker { get; set; } public required string MakerId { get; set; } public string? Description { get; set; } public ICollection Genres { get; set; } = []; public bool HasTrial { get; set;} public ICollection Tags { get; set; } = []; public ICollection Creators { get; set; } = []; public required string ImageUrl { get; set; } public required string SmallImageUrl { get; set; } public AgeRating AgeRating { get; set; } }