mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
9 lines
170 B
C#
9 lines
170 B
C#
using Bit.Core.AdminConsole.Enums.Provider;
|
|
|
|
namespace Bit.Admin.AdminConsole.Models;
|
|
|
|
public class CreateProviderModel
|
|
{
|
|
public ProviderType Type { get; set; }
|
|
}
|