mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
52 lines
842 B
C#
52 lines
842 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QRBee.Core
|
|
{
|
|
public class ClientCardData
|
|
{
|
|
|
|
public string CardNumber
|
|
{
|
|
get;
|
|
init;
|
|
}
|
|
|
|
public string ExpirationDateMMYY
|
|
{
|
|
get;
|
|
init;
|
|
}
|
|
|
|
public string? ValidFrom
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string CardHolderName
|
|
{
|
|
get;
|
|
init;
|
|
}
|
|
|
|
public string CVC
|
|
{
|
|
get;
|
|
init;
|
|
}
|
|
|
|
public int? IssueNo
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string AsString() => $"{CardNumber}|{ExpirationDateMMYY}|{ValidFrom}|{CardHolderName}|{CVC}|{IssueNo}";
|
|
|
|
}
|
|
}
|