using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebWindowTest.Models { public class OnReqHwOptEventArgs : EventArgs { #region Public Fields public string sJwd; public int nGroupId; #endregion Public Fields #region Public Constructors public OnReqHwOptEventArgs(string sJwd, int nGroupId) { this.sJwd = sJwd; this.nGroupId = nGroupId; } #endregion Public Constructors } }