Json.net . .
AmountInPounds
public decimal AmountInPounds { get { return AmountInPence / 100; } }
/ 100, , 0, AmountInPence 100.
m suffix 100 decimal:
public decimal AmountInPounds { get { return AmountInPence / 100m; } }
AmountInPounds.
:
AmountInPounds WCF, DataContract.
DataContract, DataMemberAttribute, , .
, OP:
[JsonPropertyAttribute(DefaultValueHandling = DefaultValueHandling.Include)]
public decimal AmountInPounds { get { return (decimal)AmountInPence / 100; } }
:
[System.Runtime.Serialization.DataMemberAttribute()]
public decimal AmountInPounds { get { return (decimal)AmountInPence / 100; } }