123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
-
- namespace Luticate2.Auth.Dbo.Tokens
- {
- public class LuTokensAddDbo : LuTokensEditDbo
- {
- public string Id { get; set; }
-
- public DateTime? NotBefore { get; set; }
-
- public DateTime? NotAfter { get; set; }
-
- public IDictionary<string, object> Data { get; set; }
-
- public string UserId { get; set; }
- }
- }
|