10 lines
No EOL
282 B
C#
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; }
|
|
} |