15 lines
437 B
C#
15 lines
437 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Modules.Library.Application.Models.Anime;
|
|
|
|
public abstract class AnimeItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
public bool Deleted { get; set; }
|
|
public bool Completed { get; set; }
|
|
|
|
public CommonProperties CommonProperties { get; set; } = default!;
|
|
public int? Number { get; set; }
|
|
public ushort Order { get; set; }
|
|
public TimeSpan ExpirationTime { get; set; }
|
|
} |