26 lines
482 B
C#
26 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowTest.Models
|
|
{
|
|
public class OnPreviewEventArgs : EventArgs
|
|
{
|
|
#region Public Fields
|
|
|
|
public string sJwd;
|
|
|
|
#endregion Public Fields
|
|
|
|
#region Public Constructors
|
|
|
|
public OnPreviewEventArgs(string sJwd)
|
|
{
|
|
this.sJwd = sJwd;
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
}
|
|
} |