BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Enums/UserSource.cs
2024-09-21 23:00:20 +08:00

14 lines
262 B
C#

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";
}
}