mirror of
https://github.com/bitwarden/server
synced 2026-01-30 00:03:48 +00:00
11 lines
258 B
C#
11 lines
258 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class UsersModel : PagedModel<UserViewModel>
|
|
{
|
|
public string Email { get; set; }
|
|
public string Action { get; set; }
|
|
}
|