BotSharp/BotSharp.Core/Accounts/VmUserLogin.cs

14 lines
240 B
C#
Raw Normal View History

2019-03-07 15:25:30 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Accounts
{
public class VmUserLogin
{
public string UserName { get; set; }
public string Password { get; set; }
}
}