12 lines
256 B
C#
12 lines
256 B
C#
namespace xIdentityModels.Constants {
|
|
/// <summary>
|
|
/// Represent State of Friendship between to Users
|
|
/// </summary>
|
|
public enum XFriendshipState {
|
|
None,
|
|
Pending,
|
|
Accepted,
|
|
Rejected,
|
|
Blocked,
|
|
}
|
|
} |