lampac/Shared/Models/DLNA/DLNASettings.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

30 lines
672 B
C#

namespace Shared.Models.DLNA
{
public class DLNASettings
{
public bool enable { get; set; }
public string path { get; set; }
public string mediaPattern { get; set; }
public bool autoupdatetrackers { get; set; }
public bool addTrackersToMagnet { get; set; }
public int intervalUpdateTrackers { get; set; }
public string mode { get; set; }
public int downloadSpeed { get; set; }
public int uploadSpeed { get; set; }
public int maximumDiskReadRate { get; set; }
public int maximumDiskWriteRate { get; set; }
public CoverSettings cover { get; set; }
}
}