1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00
Files
server/src/Admin/Models/UsersModel.cs

11 lines
204 B
C#

using Bit.Core.Entities;
namespace Bit.Admin.Models
{
public class UsersModel : PagedModel<User>
{
public string Email { get; set; }
public string Action { get; set; }
}
}