111 lines
2.4 KiB
C#
111 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
[Serializable]
|
|
public class CustomDataItem
|
|
{
|
|
|
|
private string _descrizione;
|
|
private string _idsezione;
|
|
private int _tpSezione;
|
|
private bool _ismandatory;
|
|
private bool _isdefault;
|
|
private string _nomecontrollogruppo;
|
|
private string _cssclassname;
|
|
private string _internalsectionCode;
|
|
private int _livello;
|
|
private TipoControllo _tipocontrollo;
|
|
private bool _sezionepers;
|
|
private string _image;
|
|
private bool _noparentbehaviour;
|
|
private bool _issectionprinting;
|
|
private int _nocheckedbyparent;
|
|
|
|
|
|
public string Descrizione
|
|
{
|
|
get { return _descrizione;}
|
|
set { _descrizione = value;}
|
|
}
|
|
|
|
public string IdSezione
|
|
{
|
|
get { return _idsezione;}
|
|
set { _idsezione = value; }
|
|
}
|
|
public int TpSezione
|
|
{
|
|
get { return _tpSezione;}
|
|
set { _tpSezione = value; }
|
|
}
|
|
public bool IsMandatory
|
|
{
|
|
get { return _ismandatory;}
|
|
set { _ismandatory = value; }
|
|
}
|
|
public bool IsDefault
|
|
{
|
|
get { return _isdefault;}
|
|
set { _isdefault = value; }
|
|
}
|
|
public string NomeControlloGruppo
|
|
{
|
|
get { return _nomecontrollogruppo;}
|
|
set { _nomecontrollogruppo = value; }
|
|
}
|
|
public string CSSClassName
|
|
{
|
|
get { return _cssclassname;}
|
|
set { _cssclassname = value; }
|
|
}
|
|
public int Livello
|
|
{
|
|
get { return _livello;}
|
|
set { _livello = value; }
|
|
}
|
|
|
|
public string InternalSectionCode
|
|
{
|
|
get { return _internalsectionCode;}
|
|
set { _internalsectionCode = value; }
|
|
}
|
|
|
|
public TipoControllo TipoControllo
|
|
{
|
|
get { return _tipocontrollo; }
|
|
set { _tipocontrollo = value; }
|
|
}
|
|
|
|
public bool SezionePersonalizzata
|
|
{
|
|
get { return _sezionepers; }
|
|
set { _sezionepers = value; }
|
|
}
|
|
|
|
public bool NoParentBehaviour
|
|
{
|
|
get { return _noparentbehaviour; }
|
|
set { _noparentbehaviour = value; }
|
|
}
|
|
|
|
public bool IsSectionPrinting
|
|
{
|
|
get { return _issectionprinting; }
|
|
set { _issectionprinting = value; }
|
|
}
|
|
public int NoCheckedByParent
|
|
{
|
|
get { return _nocheckedbyparent; }
|
|
set { _nocheckedbyparent = value; }
|
|
}
|
|
|
|
public string Image
|
|
{
|
|
get { return _image; }
|
|
set { _image = value; }
|
|
}
|
|
|
|
}
|
|
|