Model.cs 489 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.WSServer.Service.BusinessService
  7. {
  8. public class NotifyTransactionCompletedResult
  9. {
  10. public decimal? CouponPoint { set; get; } = null;
  11. public string FarewellMessage { set; get; } = null;
  12. public string ErrorMsg { get; set; } = null;
  13. public bool Success => string.IsNullOrEmpty(ErrorMsg);
  14. }
  15. }