13 lines
219 B
C#
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; }
|
|
}
|