mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
11 lines
208 B
C#
11 lines
208 B
C#
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Admin.Models
|
|
{
|
|
public class UsersModel : PagedModel<User>
|
|
{
|
|
public string Email { get; set; }
|
|
public string Action { get; set; }
|
|
}
|
|
}
|