mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
8 lines
184 B
C#
8 lines
184 B
C#
namespace API.DTOs.KavitaPlus.License;
|
|
|
|
public sealed record LicenseValidDto
|
|
{
|
|
public required string License { get; set; }
|
|
public required string InstallId { get; set; }
|
|
}
|