您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }