Files
NKC/NKC_WF/WebUserControls/cmp_errDescr.ascx.cs
T
Samuele E. Locatelli 8934ee9939 add err translation
2020-09-10 15:09:45 +02:00

45 lines
837 B
C#

using Newtonsoft.Json;
using NKC_SDK;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
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;
}
}
}
}