BotSharp/BotSharp.RestApi/Authentication/VmUserLogin.cs

23 lines
474 B
C#
Raw Normal View History

2018-08-03 22:18:40 +00:00
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; }
}
}