IdentityShroud/IdentityShroud.Core/Model/Realm.cs

10 lines
282 B
C#
Raw Normal View History

2026-02-06 19:58:01 +01:00
namespace IdentityShroud.Core.Model;
public class Realm
{
public Guid Id { get; set; }
public string Slug { get; set; } = "";
public string Description { get; set; } = "";
public List<Client> Clients { get; set; } = [];
public byte[] PrivateKey { get; set; }
}