using IO.Swagger.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.SaisieChamp { /// /// Champs correspondant à aux saisies EP ou aux évaluations. /// public class Champ { /// /// Id du champ du document /// public long IdChamp { get; set; } /// /// Texte du champ /// public string Texte { get; set; } /// /// Section à laquelle appartient le champ /// public string Section { get; set; } /// /// Sous-section à laquelle appartient le champ /// public string SousSection { get; set; } /// /// Ordre du champ dans sa section ou sa sous-section /// public int Ordre { get; set; } /// /// Type du champ correspondant au Type du document si c’est un champ un EP ou à l’évaluation sinon /// public TypeChamps TypeChamp { get; set; } /// /// Type de la saisie du champ /// public TypeSaisie TypeSaisie { get; set; } /// /// Saisies qui sont liées au champ /// public List Saisies { get; set; } } }