Files
prefab-page-detail/Prefab.Web.Client/Models/Shared/MoneyModel.cs
2025-10-27 17:39:18 -04:00

13 lines
263 B
C#

namespace Prefab.Web.Client.Models.Shared;
/// <summary>
/// Represents a monetary amount with its associated currency.
/// </summary>
public sealed class MoneyModel
{
public decimal Amount { get; set; }
public string Currency { get; set; } = "USD";
}