SharpRSS/SharpRSS.API.Contracts/DTO/ApiKey.cs
2023-09-03 21:26:20 +02:00

17 lines
324 B
C#

namespace SharpRSS.API.Contracts.DTO
{
public record ApiKey()
{
public string Key { get; }
public string Usage { get; }
public KeyStatus Status { get; }
public string Message { get; }
}
public enum KeyStatus
{
Active,
Disabled,
Unavailable
}
}