mirror of
https://github.com/bitwarden/server.git
synced 2025-04-15 18:18:12 -05:00
12 lines
266 B
C#
12 lines
266 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; }
|
|
}
|
|
}
|