using System;
|
using System.Runtime.Serialization;
|
|
namespace TProduct.Model
|
{
|
[DataContract]
|
[Serializable]
|
public class TestNoticeItemGroup : System.ICloneable
|
{
|
public TestNoticeItemGroup()
|
{
|
}
|
public TestNoticeItemGroup(TestNoticeItemGroup rhs)
|
{
|
this.ID = rhs.ID;
|
this.SortCode = rhs.SortCode;
|
this.Content = rhs.Content;
|
this.MatterID = rhs.MatterID;
|
}
|
|
///<summary>
|
///
|
///</summary>
|
public long ID { get; set; }
|
|
///<summary>
|
///
|
///</summary>
|
public int SortCode { get; set; }
|
|
///<summary>
|
///
|
///</summary>
|
public string Content { get; set; }
|
|
///<summary>
|
///
|
///</summary>
|
public long MatterID { get; set; }
|
|
public TestNoticeItemGroup Clone()
|
{
|
return (TestNoticeItemGroup)this.MemberwiseClone();
|
}
|
object ICloneable.Clone() { { return this.MemberwiseClone(); } }
|
}
|
}
|