DocSpace-buildtools/web/ASC.Web.Api/Models/TfaModel.cs

16 lines
271 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System;
namespace ASC.Web.Api.Models
{
public class TfaModel
{
public string Type { get; set; }
2021-05-17 19:14:58 +00:00
public Guid? Id { get; set; }
2019-08-12 10:53:12 +00:00
}
2021-05-19 15:04:32 +00:00
public class TfaValidateModel
{
public string Code { get; set; }
}
2019-08-12 10:53:12 +00:00
}