IM/backend/IM_API/Models/ConversationExt.cs
2026-02-12 21:59:08 +08:00

19 lines
318 B
C#

using IM_API.Dtos.Conversation;
namespace IM_API.Models
{
public partial class Conversation
{
public ChatType ChatTypeEnum {
get
{
return ChatType;
}
set
{
ChatType = value;
}
}
}
}