using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using OTSModelSharp.ResourceManage; namespace OTSDataType { public class CPropItemGrp { public CPropItemGrp() { }// constructor public CPropItemGrp(CPropItemGrp g) { }// copy constructor // group name public string GetName() { return m_strName; } public void SetName(string a_strName) { m_strName = a_strName; } // items group Id public OTS_SAMPLE_PROP_GRID_ITEM_GROUPS GetGroupId() { return m_nId; } public void SetGroupId(OTS_SAMPLE_PROP_GRID_ITEM_GROUPS a_nId) { m_nId = a_nId; } // items list public List GetItemsList() { return m_listPropItems; } public void SetItemsList(List a_listPropItems) { m_listPropItems = a_listPropItems; } public void GetItemsIdRange(OTS_SAMPLE_PROP_GRID_ITEMS a_nItemIdMin, OTS_SAMPLE_PROP_GRID_ITEMS a_nItemIdMax) { } // cleanup public void Cleanup() { } // initialization public void Init() { } // duplication public void Duplicate(CPropItemGrp a_oSource) { } // group name string m_strName; // group id OTS_SAMPLE_PROP_GRID_ITEM_GROUPS m_nId; // items list List m_listPropItems; }; }