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 462B

123456789101112131415
  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 List<string> FileNames { get; init; } = new();
  11. // public Dictionary<int, string> AvailablePeriods { get; set; }
  12. }