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; } }