Initial implementation of voice works scanning.
This commit is contained in:
25
JSMR.Application/Scanning/Contracts/DLSiteWork.cs
Normal file
25
JSMR.Application/Scanning/Contracts/DLSiteWork.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace JSMR.Application.Scanning.Contracts;
|
||||
|
||||
public class DLSiteWork
|
||||
{
|
||||
public DLSiteWorkType WorkType { get; set; }
|
||||
public DLSiteWorkCategory Category { get; set; }
|
||||
public string? ProductName { get; set; }
|
||||
public string? ProductUrl { get; set; }
|
||||
public string? ProductId { get; set; }
|
||||
public DateOnly? AnnouncedDate { get; set; }
|
||||
public DateTime? ExpectedDate { get; set; }
|
||||
public DateTime? SalesDate { get; set; }
|
||||
public int? Downloads { get; set; }
|
||||
public byte? StarRating { get; set; }
|
||||
public int? Votes { get; set; }
|
||||
public string? Maker { get; set; }
|
||||
public string? MakerId { get; set; }
|
||||
public string? Description { get; set; }
|
||||
public ICollection<string> Genres { get; set; } = [];
|
||||
public ICollection<string> Tags { get; set; } = [];
|
||||
public ICollection<string> Creators { get; set; } = [];
|
||||
public string? ImageUrl { get; set; }
|
||||
public string? SmallImageUrl { get; set; }
|
||||
public string? Type { get; set; }
|
||||
}
|
||||
13
JSMR.Application/Scanning/Contracts/DLSiteWorkCategory.cs
Normal file
13
JSMR.Application/Scanning/Contracts/DLSiteWorkCategory.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace JSMR.Application.Scanning.Contracts;
|
||||
|
||||
public enum DLSiteWorkCategory
|
||||
{
|
||||
Unknown,
|
||||
VoiceASMR,
|
||||
Manga,
|
||||
RPG,
|
||||
Video,
|
||||
Adventure,
|
||||
Simulation,
|
||||
CG
|
||||
}
|
||||
7
JSMR.Application/Scanning/Contracts/DLSiteWorkType.cs
Normal file
7
JSMR.Application/Scanning/Contracts/DLSiteWorkType.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace JSMR.Application.Scanning.Contracts;
|
||||
|
||||
public enum DLSiteWorkType
|
||||
{
|
||||
Released,
|
||||
Announced
|
||||
}
|
||||
Reference in New Issue
Block a user