Add Support for XPersonDto ...

This commit is contained in:
2025-11-03 18:15:19 +03:30
parent bcfe72f99c
commit 98f67a831a
+16
View File
@@ -0,0 +1,16 @@
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; }
}
}