BotSharp/BotSharp.RestApi/Authentication/VmUserLogin.cs
2018-08-02 16:14:46 -05:00

23 lines
474 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Authentication
{
/// <summary>
/// User login view model
/// </summary>
public class VmUserLogin
{
/// <summary>
/// User identity, email or phone
/// </summary>
public String UserName { get; set; }
/// <summary>
/// User password
/// </summary>
public String Password { get; set; }
}
}