using System; using System.Collections.Generic; using System.Text; namespace HotelPms.Share.Windows.Report { public class FetchEventArgs : System.EventArgs { private int m_Index = 0; public int Index { get { return m_Index; } set { m_Index = value; } } private int m_Count = 0; public int Count { get { return m_Count; } set { m_Count = value; } } private Cell m_Item = null; public Cell Item { get { return m_Item; } set { m_Item = value; } } public FetchEventArgs(Cell item, int index, int count) { m_Index = index; m_Count = count; m_Item = item; } } }