mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 09:35:40 -05:00
13 lines
234 B
C#
13 lines
234 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; }
|
|
} |