BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/IUserIdentity.cs
2023-06-16 21:42:35 -05:00

10 lines
182 B
C#

namespace BotSharp.Abstraction.Users;
public interface IUserIdentity
{
string Id { get; }
string Email { get; }
string FirstName { get; }
string LastName { get; }
}