BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/IUserIdentity.cs

10 lines
182 B
C#
Raw Normal View History

2023-06-17 02:42:35 +00:00
namespace BotSharp.Abstraction.Users;
public interface IUserIdentity
{
string Id { get; }
string Email { get; }
string FirstName { get; }
string LastName { get; }
}