mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
8 lines
165 B
C#
8 lines
165 B
C#
namespace Bit.Admin.Models;
|
|
|
|
public class UsersModel : PagedModel<UserViewModel>
|
|
{
|
|
public string Email { get; set; }
|
|
public string Action { get; set; }
|
|
}
|