ScientificReport
TeacherReportCreateViewModel.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.TeacherReport
6 {
8  {
9  [Required]
10  public Guid UserId;
11 
12  public IEnumerable<DAL.Entities.UserProfile.UserProfile> Users { get; set; }
13 
14 
15  }
16 }