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.Business.Dtos;
  2. public sealed class MessageDto : BaseDto
  3. {
  4. public string Text { get; set; }
  5. public bool IsValid { get; set; } = true;
  6. public Guid Code { get; set; } = Guid.NewGuid();
  7. public string FileName { get; set; }
  8. public DateTime? ExpiryDate { get; set; }
  9. }