Bitwarden-app-android-iphon.../src/App/Models/Api/Response/ProfileResponse.cs

13 lines
353 B
C#

namespace Bit.App.Models.Api
{
public class ProfileResponse
{
public string Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public string MasterPasswordHint { get; set; }
public string Culture { get; set; }
public bool TwoFactorEnabled { get; set; }
}
}