namespace SiNan.Model.Dto { public class GOIResponse { public decimal Cost { get; set; } public decimal Profit { get; set; } public decimal GOI { get { return Cost == 0M ? 0M : Math.Round(Profit / Cost, 2); } } } }