| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CD67.FicheCollege.Entity
- {
- /// <summary>
- /// Classe d'extension de celle d'Entity, nécessaire pour y associer les Metadata
- /// </summary>
- [MetadataType(typeof(ActionCLAS_Metadata))]
- public partial class ActionCLAS
- {
- }
- /// <summary>
- /// Classe contenant les DataAnnotations pour chaque champ
- /// </summary>
- public class ActionCLAS_Metadata
- {
- [UIHint("YesNoBool")]
- public Nullable<bool> Action { get; set; }
- [DataType(DataType.MultilineText)]
- public string Commentaire { get; set; }
- }
- }
|