1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-01 08:03:37 +00:00

set up user settings data table and access repository

This commit is contained in:
Kyle Spearrin
2017-02-08 20:39:37 -05:00
parent 230722945e
commit 3ad1e8a3ba
10 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using SQLite;
using Bit.App.Abstractions;
namespace Bit.App.Models.Data
{
[Table("Settings")]
public class SettingsData : IDataObject<string>
{
public SettingsData()
{ }
[PrimaryKey]
public string Id { get; set; }
public string EquivalentDomains { get; set; }
}
}