mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
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; }
|
|
}
|
|
}
|