11 lines
215 B
C#
11 lines
215 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Domain;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter<FFmpegProfileBitDepth>))]
|
|
public enum FFmpegProfileBitDepth
|
|
{
|
|
EightBit = 0,
|
|
TenBit = 1
|
|
}
|