13 lines
289 B
C#
13 lines
289 B
C#
using ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class Resolution : IDisplaySize
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Height { get; set; }
|
|
public int Width { get; set; }
|
|
}
|
|
}
|