28 lines
440 B
C#
28 lines
440 B
C#
|
|
using LFlow.Base.Interfaces;
|
|||
|
|
|
|||
|
|
namespace LFlow.UserManagement.Model
|
|||
|
|
{
|
|||
|
|
public class UserDto : IModel
|
|||
|
|
{
|
|||
|
|
public string? ID
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string? UserName
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
public string? UserEmail
|
|||
|
|
{
|
|||
|
|
get; set;
|
|||
|
|
}
|
|||
|
|
public string? UserPassword
|
|||
|
|
{
|
|||
|
|
get; set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|