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.

1234567891011
  1. using System;
  2. namespace SecureSharing.Business.Dtos;
  3. public sealed class MessageDto : BaseDto
  4. {
  5. public string Text { get; set; }
  6. public bool IsValid { get; set; } = true;
  7. public DateTime? ExpiryDate { get; set; }
  8. }