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.
 
 
 

11 lines
299 B

namespace Common.Model
{
public class VerificationKeys
{
public string uuid { get; set; }
public string userId { get; set; }
public string verificationCode { get; set; }
public string codeType { get; set; }
public string scope { get; set; }
}
}