18 lines
659 B
C#
18 lines
659 B
C#
using JSMR.Application.Common;
|
|
|
|
namespace JSMR.Application.Integrations.DLSite.Models;
|
|
|
|
public class VoiceWorkDetails
|
|
{
|
|
public VoiceWorkSeries? Series { get; init; }
|
|
public VoiceWorkTranslation? Translation { get; init; }
|
|
public AgeRating AgeRating { get; init; }
|
|
public int WishlistCount { get; init; }
|
|
public int DownloadCount { get; init; }
|
|
public DateTime? RegistrationDate { get; init; }
|
|
public ISupportedLanguage[] SupportedLanguages { get; init; } = [];
|
|
public AIGeneration AI { get; init; }
|
|
public bool HasTrial { get; init; }
|
|
public bool HasDLPlay { get; init; }
|
|
public bool HasReviews { get; init; }
|
|
} |