summaryrefslogtreecommitdiffstats
path: root/src/server/Api/Internal/Account/CreateSessionRequest.cs
blob: 24c28b46547db9d846770e590c477a71145e7a78 (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.BookmarkThing.Server.Api.Internal.Account;

public class CreateSessionRequest
{
	public string Username { get; set; }
	public string Password { get; set; }
	public bool Persist { get; set; }
}