namespace Modules.Library.Database.Database.Models.CommonProperties; public class CommonProperties { public Guid Id { get; set; } public List Names { get; set; } = []; public MediaInfo? Preview { get; set; } public List Descriptions { get; set; } = []; public List Genres { get; set; } = []; public List RelatedContent { get; set; } = []; public DateTimeOffset? AnnouncementDate { get; set; } public DateTimeOffset? EstimatedReleaseDate { get; set; } public DateTimeOffset? ReleaseDate { get; set; } }