mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
11 lines
204 B
C#
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; }
|
|
}
|
|
}
|