mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
10 lines
259 B
C#
10 lines
259 B
C#
namespace API.DTOs.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; }
|
|
}
|