namespace View_by_Distance.Shared.Models.Properties;

public interface IOutputResolution
{

    public int Height { get; }
    public int Orientation { get; }
    public int Width { get; }

}