This commit is contained in:
@ -37,4 +37,41 @@ namespace Epost.Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class main
|
||||
{
|
||||
public msg msg { get; set; }
|
||||
}
|
||||
|
||||
public class msg
|
||||
{
|
||||
private string _result = string.Empty;
|
||||
private string _msg = string.Empty;
|
||||
|
||||
public string Status
|
||||
{
|
||||
get
|
||||
{
|
||||
return _result;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_result = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Message
|
||||
{
|
||||
get
|
||||
{
|
||||
return _msg;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_msg = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user