mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 09:23:10 +08:00
13 lines
317 B
C#
13 lines
317 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; }
|
|
}
|