Completata separazione huge file

This commit is contained in:
Samuele Locatelli
2025-10-10 17:03:04 +02:00
parent c5003bd644
commit c6867f4c0d
9 changed files with 440 additions and 291 deletions
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex.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
}
}