summaryrefslogtreecommitdiffstats
path: root/src/server/Api/Internal/Account/CreateTokenRequest.cs
blob: 6839092a383e60a8bdeb649534243e55fd04d8c5 (plain) (blame)
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; }
}