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

11 lines
254 B
C#
Raw Normal View History

2021-04-25 15:06:56 +00:00
namespace ASC.Web.Api.Models
{
public class TfaSettings
{
public string Id { get; set; }
public string Title { get; set; }
public bool Enabled { get; set; }
public bool Avaliable { get; set; }
}
}