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

11 lines
211 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; }
2024-01-05 03:20:50 +00:00
string UserName { get; }
2023-06-17 02:42:35 +00:00
string FirstName { get; }
string LastName { get; }
}