namespace Sakayaki.Models;
public sealed class FanboxFolder
{
public Guid Id { get; set; }
public string FolderName { get; set; } = string.Empty;
public string Author { get; set; } = string.Empty;
public DateTime Date { get; set; }
public string Title { get; set; } = string.Empty;
public string? Keywords { get; set; }
public int? FileCount { get; set; }
public DateTime CreatedAt { get; set; }
}