1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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<CPropItem> GetItemsList() { return m_listPropItems; }
- public void SetItemsList(List<CPropItem> 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<CPropItem> m_listPropItems;
- };
- }
|