DocSpace-client/common/ASC.Common/Security/Authentication/IUserAccount.cs

11 lines
227 B
C#
Raw Normal View History

namespace ASC.Common.Security.Authentication;
public interface IUserAccount : IAccount
2019-05-15 14:56:09 +00:00
{
string Email { get; }
string FirstName { get; }
string LastName { get; }
string Title { get; }
int Tenant { get; }
}