| 123456789101112131415 |
- using SecureSharing.Business.Infrastructure;
-
- namespace SecureSharing.Models;
-
- public sealed class MessageModel
- {
- public int Id { get; set; }
- public string Text { get; set; }
- public Guid Code { get; set; }
- public PeriodOfValidity ChosenPeriod { get; set; }
- public List<IFormFile> Files { get; init; } = new();
- public List<string> FileNames { get; init; } = new();
-
- // public Dictionary<int, string> AvailablePeriods { get; set; }
- }
|