c7a151e530
- Aggiunta chiamata per opzioni hardware - Aggiunto componente per AGBOptionCombo
28 lines
566 B
C#
28 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowComplex.Models
|
|
{
|
|
public class OnReqHwOptEventArgs : EventArgs
|
|
{
|
|
#region Public Fields
|
|
|
|
public string sJwd;
|
|
public string sCodHw;
|
|
|
|
#endregion Public Fields
|
|
|
|
#region Public Constructors
|
|
|
|
public OnReqHwOptEventArgs(string sJwd, string sCodHw)
|
|
{
|
|
this.sJwd = sJwd;
|
|
this.sCodHw = sCodHw;
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
}
|
|
} |