Files
NKC/NKC_WF/WebUserControls/cmp_errDescr.ascx.cs
T
Samuele Locatelli ba8eef2aeb COmpletata review pagina BatchPreview
-- fix grafici
- ingrandimento generale
- fix pagina che debordava
- paginazione lista sheets
2025-06-18 08:36:07 +02:00

38 lines
658 B
C#

using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_errDescr : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public string ErrType
{
get
{
return hfErrType.Value;
}
set
{
hfErrType.Value = value;
}
}
public string Description
{
get
{
return hfDescription.Value;
}
set
{
hfDescription.Value = value;
}
}
}
}