1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 08:08:14 -05:00
bitwarden/src/Admin/Models/OrganizationsModel.cs
Thomas Rittson 9021236d61
AC Team code ownership moves: Organization pt. 1 ()
* move Organization.cs files to AC Team code ownership
2023-11-28 17:18:08 -06:00

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; }
}