9 lines
123 B
C#
9 lines
123 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum VideoScanKind
|
|
{
|
|
Unknown = 0,
|
|
Progressive = 1,
|
|
Interlaced = 2
|
|
}
|