17 lines
266 B
C#
17 lines
266 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace SHARP
|
|
{
|
|
internal class OMethod
|
|
{
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum OMethods
|
|
{
|
|
TelegramBot,
|
|
MyPrivateServer,
|
|
}
|
|
}
|
|
}
|