mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-10 15:15:05 -05:00
9 lines
233 B
C#
9 lines
233 B
C#
namespace API.DTOs.KavitaPlus.License;
|
|
|
|
public sealed record ResetLicenseDto
|
|
{
|
|
public required string License { get; set; }
|
|
public required string InstallId { get; set; }
|
|
public required string EmailId { get; set; }
|
|
}
|