Files
jsmr/JSMR.Application/Integrations/DLSite/Models/VoiceWorkDetails.cs
2025-08-26 09:20:13 -04:00

16 lines
564 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 int WishlistCount { get; init; }
public int DownloadCount { get; init; }
public DateTime? RegistrationDate { get; init; }
public Language[] SupportedLanguages { get; init; } = [];
//public AIGeneration AI { get; init; }
public bool HasTrial { get; init; }
public bool HasReviews { get; init; }
}