namespace Modules.Library.Domain.Models; public class AnimeTitle { public Guid Id { get; set; } public bool Deleted { get; set; } public CommonProperties CommonProperties { get; set; } = default!; public List Items { get; set; } = []; public bool Completed { get; set; } public TimeSpan ExpirationTime { get; set; } }