ScientificReport
Conference.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities
5 {
6  public class Conference
7  {
8  public enum Types
9  {
10  Local,
11  Foreign,
12  }
13 
14  [Key]
15  public Guid Id { get; set; }
16 
17  public string Topic { get; set; }
18 
19  public Types Type { get; set; }
20 
21  [DataType(DataType.Date)]
22  public DateTime Date { get; set; }
23  }
24 }