18 lines
396 B
C#
18 lines
396 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; }
|
|
/// <summary>
|
|
/// "en-US", "zh-CN"
|
|
/// </summary>
|
|
string UserLanguage { get; }
|
|
string? Phone { get; }
|
|
string? AffiliateId { get; }
|
|
}
|