You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
561 B
28 lines
561 B
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<Saisie> Saisies { get; set; }
|
|
}
|
|
}
|
|
|