Files
kami_itunes_june/AppleBatch_June.Model/NationalList.cs
2024-07-22 00:43:14 +08:00

32 lines
402 B
C#

namespace AppleBatch_June.Model
{
public class NationalList
{
private string _name;
public string name
{
get
{
return _name;
}
set
{
string[] array = value.Split('-');
if (array.Length >= 2)
{
_name = array[0].Trim();
}
else
{
_name = value;
}
}
}
public string Id { get; set; }
public PaymentInfo payment { get; set; }
}
}