mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
14 lines
315 B
C#
14 lines
315 B
C#
using System;
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
namespace RequestPlex.Store
|
|
{
|
|
[Table("Settings")]
|
|
public class SettingsModel : Entity
|
|
{
|
|
public int Port { get; set; }
|
|
public bool UserAuthentication { get; set; }
|
|
public string PlexAuthToken { get; set; }
|
|
}
|
|
}
|