Newer
Older
NoteApi / Data / PixivImage.cs
@fabre fabre 3 days ago 506 bytes 新表
public class PixivImage
{
    public Guid Id { get; set; }
    public string RelativePath { get; set; } = null!;
    public string FileName { get; set; } = null!;
    public long? PixivId { get; set; }
    public int? PageIndex { get; set; }
    public string? Tags { get; set; }
    public string? Title { get; set; }
    public string? Description { get; set; }
    public string? AuthorId { get; set; }
    public string? AuthorName { get; set; }
    public DateTimeOffset ImportedAtUtc { get; set; }
}