聊天频道相关
This commit is contained in:
@@ -6,6 +6,16 @@ public sealed class ChatUnit : Entity
|
||||
{
|
||||
public long GateRouteId;
|
||||
|
||||
public long RoleId;
|
||||
|
||||
public string NickName = string.Empty;
|
||||
|
||||
public string Head = string.Empty;
|
||||
|
||||
public string Country = string.Empty;
|
||||
|
||||
public int Level;
|
||||
|
||||
public override void Dispose()
|
||||
{
|
||||
if (IsDisposed)
|
||||
@@ -13,7 +23,12 @@ public sealed class ChatUnit : Entity
|
||||
return;
|
||||
}
|
||||
|
||||
RoleId = 0;
|
||||
GateRouteId = 0;
|
||||
NickName = string.Empty;
|
||||
Head = string.Empty;
|
||||
Country = string.Empty;
|
||||
Level = 0;
|
||||
base.Dispose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user