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

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; }
}