mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 23:10:34 -04:00
18 lines
422 B
C#
18 lines
422 B
C#
namespace API.DTOs.License;
|
|
|
|
public class UpdateLicenseDto
|
|
{
|
|
/// <summary>
|
|
/// License Key received from Kavita+
|
|
/// </summary>
|
|
public required string License { get; set; }
|
|
/// <summary>
|
|
/// Email registered with Stripe
|
|
/// </summary>
|
|
public required string Email { get; set; }
|
|
/// <summary>
|
|
/// Optional DiscordId
|
|
/// </summary>
|
|
public string? DiscordId { get; set; }
|
|
}
|