mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
9 lines
214 B
C#
9 lines
214 B
C#
namespace API.DTOs.License;
|
|
|
|
public class ResetLicenseDto
|
|
{
|
|
public required string License { get; set; }
|
|
public required string InstallId { get; set; }
|
|
public required string EmailId { get; set; }
|
|
}
|