Kavita/API/DTOs/KavitaPlus/License/EncryptLicenseDto.cs
2025-05-04 07:14:44 -07:00

11 lines
295 B
C#

namespace API.DTOs.KavitaPlus.License;
#nullable enable
public sealed record EncryptLicenseDto
{
public required string License { get; set; }
public required string InstallId { get; set; }
public required string EmailId { get; set; }
public string? DiscordId { get; set; }
}