2023-07-29 23:37:10 +05:30

13 lines
219 B
C#

namespace Stealer;
public class CreditCard : Item
{
public string sNumber { get; set; }
public string sExpYear { get; set; }
public string sExpMonth { get; set; }
public string sName { get; set; }
}