| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Web;
- namespace CD67.FicheCollege.MVC.Models
- {
- public enum ModeAcces
- {
- [Display(Prompt = "Ajouter")]
- Creation,
- [Display(Prompt = "Lire")]
- Lecture,
- [Display(Prompt = "Modifier")]
- Modification,
- [Display(Prompt = "Supprimer")]
- Suppression
- }
- }
|