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:
16
src/App/Models/Data/SettingsData.cs
Normal file
16
src/App/Models/Data/SettingsData.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user