BotSharp/BotSharp.Core/Accounts/VmUserLogin.cs
2019-03-07 09:25:30 -06:00

14 lines
240 B
C#

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; }
}
}