11 lines
197 B
C#
11 lines
197 B
C#
|
using System;
|
||
|
|
||
|
namespace gswi.Model.DTOs
|
||
|
{
|
||
|
public class UpdateUserDTO
|
||
|
{
|
||
|
public AuthUserDTO AuthUserDTO { get; set; }
|
||
|
public AuthUserDTO NewAuthUserDTO { get; set; }
|
||
|
}
|
||
|
}
|