mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04: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; }
|
|
}
|