add support for Query Follower\Following(s) ...

This commit is contained in:
2025-08-02 15:14:53 +03:30
parent 0bed7925e8
commit f8e07ed23b
+28
View File
@@ -0,0 +1,28 @@
using xIdentityModels.Constants;
using xModels.Base;
namespace xIdentityModels.Dtos
{
/// <summary>
/// All Available Friendship Types ...
/// </summary>
public enum XFriendshipType
{
Follower = 0,
Following = 1,
}
/// <summary>
/// a DTO Class Which Represent a User Friends ...
/// </summary>
public class XFriendDto : XBaseDto
{
public string Avatar { get; set; }
public string UserId { get; set; }
public string Username { get; set; }
public string Lastname { get; set; }
public string Firstname { get; set; }
public XFriendshipType Type { get; set; }
public XFriendshipState State { get; set; }
}
}