Files
Kg.SeaTime/Service/Application.Domain.Entity/view/RelationView.cs
2026-05-29 19:06:51 +08:00

11 lines
299 B
C#

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; }
}