12121
This commit is contained in:
16
Service/Application.Domain.Entity/model/TeamModel.cs
Normal file
16
Service/Application.Domain.Entity/model/TeamModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class TeamModel
|
||||
{
|
||||
public int state { get; set; }
|
||||
public string codeTips { get; set; }
|
||||
public game_team team { get; set; }
|
||||
public List<TeamUser> user { get; set; }
|
||||
}
|
||||
|
||||
public class TeamUser
|
||||
{
|
||||
public UserModel user { get; set; }
|
||||
public int isOnline { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user