using System; namespace gswi.Model.DTOs { public class AdminUpdateUserDTO { public AuthUserDTO AuthUserDTO { get; set; } public AuthUserDTO NewAuthUserDTO { get; set; } public bool ChangePassword { get; set; } } }