15 lines
334 B
C#
15 lines
334 B
C#
namespace BotSharp.Abstraction.Users;
|
|
|
|
public interface IUserIdentity
|
|
{
|
|
string Id { get; }
|
|
string Email { get; }
|
|
string UserName { get; }
|
|
string FirstName { get; }
|
|
string LastName { get; }
|
|
string FullName { get; }
|
|
string? UserLanguage { get; }
|
|
string? Phone { get; }
|
|
string? AffiliateId { get; }
|
|
}
|