19 lines
318 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|