Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MessageModel.cs 517B

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 string FilesAsText { get; set; } = default!;
  12. // public Dictionary<int, string> AvailablePeriods { get; set; }
  13. }