BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Enums/UserSource.cs

14 lines
262 B
C#
Raw Normal View History

2024-09-21 07:12:08 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Abstraction.Users.Enums
{
public static class UserSource
{
public const string Internal = "internal";
}
}