mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
17 lines
324 B
C#
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
|
|
}
|
|
} |