Ombi/RequestPlex.Store/SettingsModel.cs
2016-02-26 14:31:28 +00:00

12 lines
210 B
C#

using System;
using Dapper.Contrib.Extensions;
namespace RequestPlex.Store
{
[Table("Settings")]
public class SettingsModel : Entity
{
public int Port { get; set; }
}
}