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.

12345678910
  1. namespace SecureSharing.Data.Data;
  2. public sealed class Message : BaseEntity
  3. {
  4. public string Text { get; set; }
  5. public string Code { get; set; }
  6. public List<FileModel> FileNames { get; } = new();
  7. public bool IsValid { get; set; }
  8. public DateTime? ExpiryDate { get; set; }
  9. }