Модуль заказов

This commit is contained in:
Халимов Рустам
2026-02-10 22:32:28 +03:00
parent 12c86f9937
commit 3b2c0029a1
33 changed files with 1370 additions and 33 deletions
@@ -0,0 +1,9 @@
namespace Nashel.Modules.Order.Domain.ValueObjects;
/// <summary>
/// Денежная сумма.
/// </summary>
public record Money(decimal Amount, string Currency)
{
public static Money Zero(string currency = "RUB") => new(0m, currency);
}