Kavita/API/DTOs/KavitaPlus/License/EncryptLicenseDto.cs
2025-01-20 06:14:57 -08:00

9 lines
270 B
C#

namespace API.DTOs.KavitaPlus.License;
public class EncryptLicenseDto
{
public required string License { get; set; }
public required string InstallId { get; set; }
public required string EmailId { get; set; }
public string? DiscordId { get; set; }
}