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