AuthorizationServerDemos/CSharp/AuthorizationServer/Quickstart/Account/TotpViewModel.cs
2021-01-18 18:32:22 +03:00

9 lines
197 B
C#

namespace OidcSamples.AuthorizationServer.Quickstart.Account
{
public class TotpViewModel
{
public string KeyUri { get; set; }
public string Secret { get; set; }
}
}