mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
491 B
18 lines
491 B
using YamlDotNet.Serialization; |
|
|
|
namespace ErsatzTV.Core.FFmpeg; |
|
|
|
public class MpegTsScript |
|
{ |
|
[YamlIgnore] |
|
public string Id { get; set; } |
|
|
|
[YamlMember(Alias = "name", ApplyNamingConventions = false)] |
|
public string Name { get; set; } |
|
|
|
[YamlMember(Alias = "linux_script", ApplyNamingConventions = false)] |
|
public string LinuxScript { get; set; } |
|
|
|
[YamlMember(Alias = "windows_script", ApplyNamingConventions = false)] |
|
public string WindowsScript { get; set; } |
|
}
|
|
|