2022-05-08 12:28:50 -07:00

10 lines
191 B
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IOutputResolution
{
public int Height { get; }
public int Orientation { get; }
public int Width { get; }
}