1
0
mirror of https://github.com/bitwarden/server synced 2026-02-28 18:33:51 +00:00
Files
server/src/Admin/Models/OrganizationsModel.cs
2022-08-29 16:06:55 -04:00

13 lines
316 B
C#

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