12 lines
251 B
C#
12 lines
251 B
C#
using System;
|
|
|
|
namespace gswi.Model.DTOs
|
|
{
|
|
public class AdminUpdateUserDTO
|
|
{
|
|
public AuthUserDTO AuthUserDTO { get; set; }
|
|
public AuthUserDTO NewAuthUserDTO { get; set; }
|
|
public bool ChangePassword { get; set; }
|
|
}
|
|
}
|