| | 1 | | using MUNity.Database.Models.Conference; |
| | 2 | | using System; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.ComponentModel.DataAnnotations; |
| | 5 | | using System.Linq; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | |
|
| | 8 | | namespace MUNity.Database.Models.Session; |
| | 9 | |
|
| | 10 | | public class CommitteeSession |
| | 11 | | { |
| | 12 | | [MaxLength(80)] |
| 1 | 13 | | public string CommitteeSessionId { get; set; } |
| | 14 | |
|
| 1 | 15 | | public string Name { get; set; } |
| | 16 | |
|
| 1 | 17 | | public Committee Committee { get; set; } |
| | 18 | |
|
| 0 | 19 | | public AttendanceCheck AttendanceCheck { get; set; } |
| | 20 | |
|
| 0 | 21 | | public ICollection<ProtocolEntry> ProtocolEntries { get; set; } |
| | 22 | |
|
| 1 | 23 | | public DateTime StartDate { get; set; } |
| | 24 | |
|
| 1 | 25 | | public DateTime EndDate { get; set; } |
| | 26 | |
|
| 1 | 27 | | public CommitteeSession() |
| 1 | 28 | | { |
| 1 | 29 | | this.CommitteeSessionId = Guid.NewGuid().ToString(); |
| 1 | 30 | | } |
| | 31 | | } |