mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
19 lines
458 B
C#
19 lines
458 B
C#
namespace API.DTOs.KavitaPlus.License;
|
|
#nullable enable
|
|
|
|
public sealed record 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; }
|
|
}
|