7 lines
144 B
C#
7 lines
144 B
C#
namespace Shapes.Shapes;
|
|
|
|
public sealed class Square : Shape
|
|
{
|
|
const int SideLengthMin = 10;
|
|
const int SideLengthMax = 120;
|
|
}
|