Knocks/BackEnd/Knoks.Core/Entities/Args/CreateOperatorArgs.cs

28 lines
831 B
C#

using Newtonsoft.Json;
using System;
namespace Knoks.Core.Entities.Args
{
public class CreateOperatorArgs : IApiArgs
{
[JsonIgnore, AutoInitField]
public string HttpRequestInfo { get; set; }
[JsonIgnore, AutoInitField]
public int ApiConsumerId { get; set; }
public string OperatorName { get; set; }
public string OperatorPassword { get; set; }
public DateTime? OperatorCreationDate { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Phone { get; set; }
public string Email { get; set; }
public int? CountryId { get; set; }
public bool IsActive { get; set; } = true;
public bool IsReadOnly { get; set; }
public bool IsTest { get; set; }
}
}