mirror of
https://github.com/bitwarden/server.git
synced 2025-04-11 08:08:14 -05:00
13 lines
329 B
C#
13 lines
329 B
C#
using Bit.Core.AdminConsole.Entities;
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class OrganizationsModel : PagedModel<Organization>
|
|
{
|
|
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; }
|
|
}
|