mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
33 lines
503 B
C#
33 lines
503 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class AreaRequestModel
|
|
{
|
|
public int state { get; set; }
|
|
|
|
public string msg { get; set; } = "";
|
|
|
|
|
|
public string balance { get; set; } = "";
|
|
|
|
|
|
public string Area { get; set; } = "";
|
|
|
|
|
|
public string isDisabledAccount { get; set; } = "";
|
|
|
|
|
|
public string extension { get; set; } = "";
|
|
|
|
|
|
public string ServerId { get; set; } = "";
|
|
|
|
|
|
public AreaRequestModel Init(int _state, string _msg)
|
|
{
|
|
state = _state;
|
|
msg = _msg;
|
|
return this;
|
|
}
|
|
}
|
|
}
|