using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Domain.Dto.OrderRefund { public class OrderRefundContractDto { public string RefundIdCardRemark { get; set; } public int? RefundIdCardStatus { get; set; } } public class IdCardApiResult { public int ret { get; set; } public string msg { get; set; } } }