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;
}
///
///
///
public long ID { get; set; }
///
///
///
public int SortCode { get; set; }
///
///
///
public string Content { get; set; }
///
///
///
public long MatterID { get; set; }
public TestNoticeItemGroup Clone()
{
return (TestNoticeItemGroup)this.MemberwiseClone();
}
object ICloneable.Clone() { { return this.MemberwiseClone(); } }
}
}