Miscelanious trials
This commit is contained in:
commit
f99c97f392
33 changed files with 881 additions and 0 deletions
10
IdentityShroud.Core/Model/Realm.cs
Normal file
10
IdentityShroud.Core/Model/Realm.cs
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue