Add PersonDto for Handle Author Info or ETC Usage ...

This commit is contained in:
2025-11-03 17:45:08 +03:30
parent fad3a1b45f
commit bcfe72f99c
+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 XPersoDto : XBaseDto
{
public string Username { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public string Avatar { get; set; }
}
}