2024-02-21 09:18:09 +10:00
|
|
|
|
using Bit.Admin.Models;
|
|
|
|
|
|
using Bit.Core.AdminConsole.Entities;
|
2018-03-21 17:41:14 -04:00
|
|
|
|
|
2024-02-21 09:18:09 +10:00
|
|
|
|
namespace Bit.Admin.AdminConsole.Models;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2018-03-21 17:41:14 -04:00
|
|
|
|
public class OrganizationsModel : PagedModel<Organization>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string UserEmail { get; set; }
|
2018-03-21 21:58:14 -04:00
|
|
|
|
public bool? Paid { get; set; }
|
2018-03-23 09:48:36 -04:00
|
|
|
|
public string Action { get; set; }
|
2018-03-29 11:26:19 -04:00
|
|
|
|
public bool SelfHosted { get; set; }
|
2018-03-21 17:41:14 -04:00
|
|
|
|
}
|