SharpRSS/SharpRSS.API.Contracts/DTO/ApiKey.cs

17 lines
324 B
C#
Raw Normal View History

2023-09-03 21:26:20 +02:00
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
}
}