10 lines
182 B
C#
10 lines
182 B
C#
|
|
namespace BotSharp.Abstraction.Users;
|
||
|
|
|
||
|
|
public interface IUserIdentity
|
||
|
|
{
|
||
|
|
string Id { get; }
|
||
|
|
string Email { get; }
|
||
|
|
string FirstName { get; }
|
||
|
|
string LastName { get; }
|
||
|
|
}
|