This commit is contained in:
Putoo
2026-05-29 19:06:51 +08:00
parent 69ae1e3174
commit bd1535aee9
48 changed files with 1571 additions and 133 deletions

View File

@@ -0,0 +1,11 @@
namespace Application.Domain.Entity;
public class RelationView
{
public UserModel user { get; set; }
public long near { get; set; }
public string mapName { get; set; }
public string cityName { get; set; }
public long sort { get; set; }
public int isOnline { get; set; }
}