| using System;namespace InABox.Clients{    public interface IValidationData    {        ValidationStatus Status { get; set; }        string UserID { get; set; }        Guid UserGuid { get; set; }        Guid SecurityID { get; set; }        Guid SessionID { get; set; }        string? Recipient2FA { get; set; }        DateTime PasswordExpiration { get; set; }    }}
 |