using System;
|
using System.Runtime.Serialization;
|
|
namespace TProduct.Model
|
{
|
[DataContract]
|
[Serializable]
|
public class TestNoticeItemEx : TestNoticeItem, System.ICloneable
|
{
|
public TestNoticeItemEx()
|
{
|
}
|
public TestNoticeItemEx(TestNoticeItemGroup grp, TestNoticeItem item) : base(item)
|
{
|
this.GroupSortCode = grp.SortCode;
|
this.GroupContent = grp.Content;
|
}
|
|
|
|
///<summary>
|
///
|
///</summary>
|
public int GroupSortCode { get; set; }
|
|
///<summary>
|
///
|
///</summary>
|
public string GroupContent { get; set; }
|
|
|
|
|
}
|
}
|