Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

MessageModel.cs 404B

1234567891011121314
  1. using SecureSharing.Business.Infrastructure;
  2. namespace SecureSharing.Models;
  3. public sealed class MessageModel
  4. {
  5. public int Id { get; set; }
  6. public string Text { get; set; }
  7. public Guid Code { get; set; }
  8. public PeriodOfValidity ChosenPeriod { get; set; }
  9. public List<IFormFile> Files { get; init; } = new();
  10. // public Dictionary<int, string> AvailablePeriods { get; set; }
  11. }