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

13 lines
274 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; }
2024-01-31 19:57:54 +00:00
string FullName { get; }
2024-05-12 03:22:14 +00:00
string? UserLanguage { get; }
2023-06-17 02:42:35 +00:00
}