|
using Knoks.Core.Entities.Args;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Knoks.Api.Authentication
|
|
{
|
|
public class UserCredentials : IApiArgs
|
|
{
|
|
[JsonIgnore, AutoInitField]
|
|
public string HttpRequestInfo { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|