ModeAcces.cs 443 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Web;
  6. namespace CD67.FicheCollege.MVC.Models
  7. {
  8. public enum ModeAcces
  9. {
  10. [Display(Prompt = "Ajouter")]
  11. Creation,
  12. [Display(Prompt = "Lire")]
  13. Lecture,
  14. [Display(Prompt = "Modifier")]
  15. Modification,
  16. [Display(Prompt = "Supprimer")]
  17. Suppression
  18. }
  19. }