forked from ddrilling/AsbCloudServer
10 lines
173 B
C#
10 lines
173 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class UserRegistrationDto : UserDto
|
|||
|
{
|
|||
|
public string Password { get; set; }
|
|||
|
}
|
|||
|
}
|