| 12345678910111213141516171819 |
- using MVCTemplate.Business.Infrastructure;
- using System;
- using System.Collections.Generic;
-
- namespace MVCTemplate.Models
- {
-
- public class MessageModel
- {
-
- public int Id { get; set; }
- public string Text { get; set; }
- public PeriodOfValidity ChosenPeriod { get; set; }
-
- // public Dictionary<int, string> AvailablePeriods { get; set; }
-
-
- }
- }
|