mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-21 00:59:43 -04:00
11 lines
287 B
C#
11 lines
287 B
C#
namespace API.DTOs.KavitaPlus.License;
|
|
#nullable enable
|
|
|
|
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; }
|
|
}
|