ex-inh-03-shapes/Shapes/Shapes/Square.cs
2025-03-13 16:53:57 +01:00

7 lines
144 B
C#

namespace Shapes.Shapes;
public sealed class Square : Shape
{
const int SideLengthMin = 10;
const int SideLengthMax = 120;
}