You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageModel.cs 383B

12345678910111213141516171819
  1. using MVCTemplate.Business.Infrastructure;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace MVCTemplate.Models
  5. {
  6. public class MessageModel
  7. {
  8. public int Id { get; set; }
  9. public string Text { get; set; }
  10. public PeriodOfValidity ChosenPeriod { get; set; }
  11. // public Dictionary<int, string> AvailablePeriods { get; set; }
  12. }
  13. }