You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
691 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
public class SlotCardAuthorizationData
{
private string _CardNo;
private string _Account;
private string _Password;
/// <summary>
/// 卡号
/// </summary>
public string CardNo { get => _CardNo; set => _CardNo = value; }
/// <summary>
/// 账号
/// </summary>
public string Account { get => _Account; set => _Account = value; }
/// <summary>
/// 密码
/// </summary>
public string Password { get => _Password; set => _Password = value; }
}
}