Kavita/API/DTOs/KavitaPlus/License/UpdateLicenseDto.cs
2025-01-20 06:14:57 -08:00

17 lines
433 B
C#

namespace API.DTOs.KavitaPlus.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; }
}