IValidationData.cs 378 B

123456789101112131415
  1. using System;
  2. namespace InABox.Clients
  3. {
  4. public interface IValidationData
  5. {
  6. ValidationStatus Status { get; set; }
  7. string UserID { get; set; }
  8. Guid UserGuid { get; set; }
  9. Guid SecurityID { get; set; }
  10. Guid SessionID { get; set; }
  11. string? Recipient2FA { get; set; }
  12. DateTime PasswordExpiration { get; set; }
  13. }
  14. }