lampac/Shared/Models/DLNA/CoverSettings.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

26 lines
546 B
C#

using System.Diagnostics;
namespace Shared.Models.DLNA
{
public class CoverSettings
{
public bool enable { get; set; }
public bool consoleLog { get; set; }
public bool preview { get; set; }
public int timeout { get; set; }
public int skipModificationTime { get; set; }
public string extension { get; set; }
public string coverComand { get; set; }
public string previewComand { get; set; }
public ProcessPriorityClass? priorityClass { get; set; }
}
}