7 lines
157 B
C#
7 lines
157 B
C#
namespace e_suite.Workflow.Core;
|
|
|
|
public class Cost
|
|
{
|
|
public decimal Amount { get; set; }
|
|
public string ISOCurrencySymbol { get; set; } = "GBP";
|
|
} |