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