diff --git a/Dtos/XAuthorDto.cs b/Dtos/XAuthorDto.cs new file mode 100644 index 0000000..5be29ce --- /dev/null +++ b/Dtos/XAuthorDto.cs @@ -0,0 +1,16 @@ +using xModels.Base; + +namespace xModels.Dtos +{ + /// + /// Since in Many Cases we have to Retrieve Specified User's Minimal + /// Infos for Handle Data Transfering, this Dto is Used ... + /// + public class XPersoDto : XBaseDto + { + public string Username { get; set; } + public string Firstname { get; set; } + public string Lastname { get; set; } + public string Avatar { get; set; } + } +} \ No newline at end of file