using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace EPAServeur.Models.SaisieChamp { public enum TypeChamp { EPS, EPA, EPASIXANS, EPI, Evaluation } public class Champ { public long Id { get; set; } public string Texte { get; set; } public string Section { get; set; } public string SousSection { get; set; } public long Ordre { get; set; } public TypeChamp TypeChamp { get; set; } public TypeSaisie TypeSaisie { get; set; } public List Saisies { get; set; } } }