You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
845 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Card
{
/// <summary>
/// 校验核销优惠券
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class IntegralAdjustmentResponse
{
private decimal preTotalPoint;
private decimal aftTotalPoint;
/// <summary>
/// 操作前积分
/// </summary>
[JsonProperty(PropertyName = "preTotalPoint")]
public decimal PreTotalPoint { get => preTotalPoint; set => preTotalPoint = value; }
/// <summary>
/// 操作后积分
/// </summary>
[JsonProperty(PropertyName = "aftTotalPoint")]
public decimal AftTotalPoint { get => aftTotalPoint; set => aftTotalPoint = value; }
}
}