1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-15 10:08:14 -05:00
bitwarden/src/Admin/Models/OrganizationsModel.cs
2018-03-29 11:26:19 -04:00

14 lines
354 B
C#

using Bit.Core.Models.Table;
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; }
}
}