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