mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00: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; }
|
|
}
|
|
}
|