8 lines
128 B
C#
8 lines
128 B
C#
namespace ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
public interface IDisplaySize
|
|
{
|
|
int Width { get; }
|
|
int Height { get; }
|
|
}
|