namespace HotelPms.Client.Blazor.ViewModel
{
public class ValidEventArgs : EventArgs
{
public bool Cancel { get; set; } = false;
///
/// Enterキーを押したかどうか
///
public bool EnterPush { get; set; } = false;
///
/// 全体チェックかどうか
///
public bool IsAll { get; set; } = false;
public bool ResetOrgValue { get; set; } = false;
public string Text { get; set; }
public object Tag { get; set; }
}
}