using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Service.BusinessService { public class NotifyTransactionCompletedResult { public decimal? CouponPoint { set; get; } = null; public string FarewellMessage { set; get; } = null; public string ErrorMsg { get; set; } = null; public bool Success => string.IsNullOrEmpty(ErrorMsg); } }