20 lines
445 B
C#
20 lines
445 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 Type { get; }
|
|
string Role { get; }
|
|
string? RegionCode { get; }
|
|
}
|