Базово работает

gRPC на отдельном порту
This commit is contained in:
2026-06-01 18:02:48 +03:00
parent 3af9cb1912
commit 50626c6ac6
38 changed files with 833 additions and 164 deletions

View File

@@ -1,6 +1,6 @@
namespace Contracts.Menu;
public sealed class GetMenuParameters
public sealed record GetMenuParameters(bool WithPrice = true)
{
public bool WithPrice { get; set; } = true;
public override string ToString() => $"WithPrice={WithPrice}";
}