Knocks/BackEnd/Knoks.Api.Client/Invoker/Operator.cs

34 lines
1.1 KiB
C#

using System;
namespace Knoks.Api.Client.Invoker
{
public class CreateOperatorArgs
{
public string OperatorName { get; set; }
public string OperatorPassword { 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; }
public bool IsReadOnly { get; set; }
public bool IsTest { get; set; }
public DateTime OperatorCreationDate { get; set; }
}
public class Operator
{
public int OperatorId { get; set; }
public string OperatorName { 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 IsReadOnly { get; set; }
public bool IsTest { get; set; }
}
}