using System;
using System.Collections.Generic;
using System.Text;
namespace HotelPms.Share.Windows.Util
{
public class CTextBoxArrayBaseEventArgs : EventArgs
{
public bool Cancel { get; set; } = false;
public int ChangeEditingModeResult { get; set; } = 4;
///
/// ÅãÌo^Ì`FbNÅÍÈAÚtH[JXÚ®Ì`FbN
///
public bool CheckAll { get; set; } = false;
public bool ShowErrMsg { get; set; } = false;
///
/// yyyy/MM/dd
///
public string ChangeDate { get; set; }
public bool ResetOrgValue { get; set; }
public object Tag { get; set; } = null;
}
}