src/common/details/console/gui/Rect.cs (18 lines of code) (raw):
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
using System;
namespace Azure.AI.Details.Common.CLI.ConsoleGui
{
public class Rect
{
public Rect(int x, int y, int width, int height)
{
X = x;
Y = y;
Width = width;
Height = height;
}
public int X;
public int Y;
public int Width;
public int Height;
}
}