11 lines
292 B
C#
11 lines
292 B
C#
namespace Moonlight.ApiServer.Database.Entities;
|
|
|
|
public class ApiKey
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Secret { get; set; }
|
|
public string Description { get; set; }
|
|
public string PermissionsJson { get; set; } = "[]";
|
|
public DateTime ExpiresAt { get; set; }
|
|
} |