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 Data { get; set; } public string UserId { get; set; } } }