Files
server/src/Admin/Models/OrganizationsModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
316 B
C#
Raw Normal View History

using Bit.Core.Entities;
2018-03-21 17:41:14 -04:00
namespace Bit.Admin.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; }
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
}