mirror of
https://github.com/bitwarden/server.git
synced 2025-05-01 17:52:17 -05:00
14 lines
351 B
C#
14 lines
351 B
C#
using Bit.Core.Entities.Provider;
|
|
|
|
namespace Bit.Admin.Models
|
|
{
|
|
public class ProvidersModel : PagedModel<Provider>
|
|
{
|
|
public string Name { get; set; }
|
|
public string UserEmail { get; set; }
|
|
public bool? Paid { get; set; }
|
|
public string Action { get; set; }
|
|
public bool SelfHosted { get; set; }
|
|
}
|
|
}
|