ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace HotelPms.Client.Blazor.ViewModel
{
    public class ValidEventArgs : EventArgs
    {
        public bool Cancel { get; set; } = false;
 
        /// <summary>
        /// Enterキーを押したかどうか
        /// </summary>
        public bool EnterPush { get; set; } = false;
 
        /// <summary>
        /// 全体チェックかどうか
        /// </summary>
        public bool IsAll { get; set; } = false;
 
        public bool ResetOrgValue { get; set; } = false;
 
        public string Text { get; set; }
 
        public object Tag { get; set; }
    }
}