15 lines
349 B
C#
15 lines
349 B
C#
using Knoks.Core.Entities.Args;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Knoks.Api.Authentication
|
|
{
|
|
public class OperatorCredentials : IApiArgs
|
|
{
|
|
[JsonIgnore, AutoInitField]
|
|
public string HttpRequestInfo { get; set; }
|
|
|
|
public string OperatorName { get; set; }
|
|
public string OperatorPassword { get; set; }
|
|
}
|
|
}
|