IdentityShroud/IdentityShroud.Core/Model/Realm.cs
2026-02-06 19:58:01 +01:00

10 lines
No EOL
282 B
C#

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; }
}