13 lines
364 B
C#
13 lines
364 B
C#
namespace Modules.Library.Application.Models.Anime;
|
|
|
|
public class Title
|
|
{
|
|
public Guid Id { get; set; }
|
|
public bool Deleted { get; set; }
|
|
public CommonProperties CommonProperties { get; set; } = default!;
|
|
|
|
public List<AnimeItem> Items { get; set; } = [];
|
|
|
|
public bool Completed { get; set; }
|
|
public TimeSpan ExpirationTime { get; set; }
|
|
} |