You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
619 B
34 lines
619 B
10 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace SiaSun.LMS.Model
|
||
|
{
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
public class MsgData
|
||
|
{
|
||
|
public MsgData()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
private int _code;
|
||
|
private string _message;
|
||
|
|
||
|
[DataMember]
|
||
|
public int Code
|
||
|
{
|
||
|
get { return _code; }
|
||
|
set { _code = value; }
|
||
|
}
|
||
|
[DataMember]
|
||
|
public string Message
|
||
|
{
|
||
|
get { return _message; }
|
||
|
set { _message = value; }
|
||
|
}
|
||
|
}
|
||
|
}
|