13 lines
263 B
C#
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";
|
|
}
|
|
|