Miscelanious trials

This commit is contained in:
eelke 2026-02-06 19:58:01 +01:00
commit f99c97f392
33 changed files with 881 additions and 0 deletions

View file

@ -0,0 +1,10 @@
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; }
}