Better joining and leaving

This commit is contained in:
2025-05-18 20:52:22 +08:00
parent 8d246a19ad
commit a86a0fef37
3 changed files with 31 additions and 14 deletions

View File

@ -4,9 +4,9 @@ namespace DysonNetwork.Sphere.Account;
public enum RelationshipStatus
{
Pending,
Friends,
Blocked
Friends = 100,
Pending = 0,
Blocked = -100
}
public class Relationship : ModelBase