ScientificReport
DepartmentCreateModel.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
4 
5 namespace ScientificReport.DTO.Models.Department
6 {
7  public class DepartmentCreateModel
8  {
9  [Required]
10  public string Title { get; set; }
11 
12  [Required]
13  [Display(Name = "Head of Department")]
14  public Guid SelectedHeadId { get; set; }
15 
16  public IEnumerable<DAL.Entities.UserProfile.UserProfile> UserSelection { get; set; }
17  }
18 }