14 lines
240 B
C#
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; }
|
|
}
|
|
}
|