12 lines
228 B
C#
12 lines
228 B
C#
namespace Shared.Models.ServerProxy
|
|
{
|
|
public class HlsCacheConf
|
|
{
|
|
public bool enable { get; set; }
|
|
|
|
public string plugin { get; set; }
|
|
|
|
public List<HlsCachePattern> tasks { get; set; }
|
|
}
|
|
}
|