16 lines
451 B
C#
16 lines
451 B
C#
using xModels.Base;
|
|
|
|
namespace xModels.Dtos
|
|
{
|
|
/// <summary>
|
|
/// Since in Many Cases we have to Retrieve Specified User's Minimal
|
|
/// Infos for Handle Data Transfering, this Dto is Used ...
|
|
/// </summary>
|
|
public class XPersonDto : XBaseDto
|
|
{
|
|
public string Username { get; set; }
|
|
public string Firstname { get; set; }
|
|
public string Lastname { get; set; }
|
|
public string Avatar { get; set; }
|
|
}
|
|
} |