1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-24 04:04:34 +00:00
Files
mobile/src/Core/Models/Domain/TwoFactorProvider.cs
Kyle Spearrin 43948c65f1 auth service
2019-04-18 09:45:31 -04:00

15 lines
377 B
C#

using Bit.Core.Enums;
namespace Bit.Core.Models.Domain
{
public class TwoFactorProvider
{
public TwoFactorProviderType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int Priority { get; set; }
public int Sort { get; set; }
public bool Premium { get; set; }
}
}