1 2 3 4 5 6 7 8 9 10
namespace IOL.BookmarkThing.Server.Api.Internal.Account; public class CreateTokenRequest { public bool AllowRead { get; set; } public bool AllowCreate { get; set; } public bool AllowUpdate { get; set; } public bool AllowDelete { get; set; } public DateTime ExpiryDate { get; set; } }