mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 03:43:33 +08:00
15 lines
384 B
C#
15 lines
384 B
C#
|
|
using Bit.Core.Models.Table;
|
|||
|
|
using Bit.Core.Models.Table.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; }
|
|||
|
|
}
|
|||
|
|
}
|