lampac/Shared/Models/AppConf/FileCacheConf.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

17 lines
325 B
C#

namespace Shared.Models.AppConf
{
public class FileCacheConf
{
/// <summary>
/// 1 GB
/// </summary>
public long freeDiskSpace { get; set; } = 1073741824;
public int html { get; set; }
public int torrent { get; set; }
public int hls { get; set; }
}
}