Bitwarden-app-android-iphon.../src/Core/Models/Domain/State.cs

11 lines
234 B
C#

using System.Collections.Generic;
namespace Bit.Core.Models.Domain
{
public class State : Domain
{
public Dictionary<string, Account> Accounts { get; set; }
public string ActiveUserId { get; set; }
}
}