1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SinochemPosClient.Models
- {
- public class TrxNotificationResponse : ResponseBase
- {
- public const string SuccessResponse = "OK";
- public string status { get; set; }
- public string errorCode { get; set; }
- public string errorMsg { get; set; }
- public object content { get; set; }
- public bool IsSuccessful()
- {
- return SuccessResponse == status;
- }
- }
- }
|