Files
Hushian/Common/Enums/ConversationType.cs

14 lines
226 B
C#
Raw Permalink Normal View History

2025-06-28 15:31:07 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Enums
{
public enum ConversationType
{
2025-07-11 20:37:28 +03:30
EU = 1, UE = 2,Bot=3,CU=4
2025-06-28 15:31:07 +03:30
}
}