聊天频道相关
This commit is contained in:
25
Entity/Chat/ChatContentBase.cs
Normal file
25
Entity/Chat/ChatContentBase.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace NB.Chat;
|
||||
|
||||
[Serializable]
|
||||
public abstract class ChatContentData
|
||||
{
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ChatContentNormal : ChatContentData
|
||||
{
|
||||
public string Content = "";
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ChatContentFished : ChatContentData
|
||||
{
|
||||
public long Id;
|
||||
public int Weight;
|
||||
public int Type;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ChatContentRecord : ChatContentData
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user