7 lines
160 B
C#
7 lines
160 B
C#
namespace Contracts.Menu;
|
|
|
|
public sealed record GetMenuParameters(bool WithPrice = true)
|
|
{
|
|
public override string ToString() => $"WithPrice={WithPrice}";
|
|
}
|