mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
15 lines
269 B
C#
15 lines
269 B
C#
using Realms;
|
|
|
|
namespace FeedCenter.Options
|
|
{
|
|
public class Setting : RealmObject
|
|
{
|
|
[PrimaryKey]
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
|
|
[Ignored]
|
|
public string Version { get; set; }
|
|
}
|
|
}
|