2021-11-20 13:52:28 +01:00
|
|
|
namespace zero.Persistence;
|
2021-11-19 14:59:24 +01:00
|
|
|
|
|
|
|
|
[RavenCollection("Tokens")]
|
2021-12-02 13:43:04 +01:00
|
|
|
public class SecurityToken : ISupportsDbConventions
|
2021-11-19 14:59:24 +01:00
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Token { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, string> Metadata { get; set; } = new();
|
|
|
|
|
}
|