23 lines
446 B
C#
23 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.OrderManage.Orders;
|
|
|
|
namespace ARW.Model.Dto.Api.OrderManage.Orders
|
|
{
|
|
|
|
/// <summary>
|
|
/// 订单优惠券对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-09-01
|
|
/// </summary>
|
|
public class OrderCoupon
|
|
{
|
|
public long ShopGuid { get; set; }
|
|
public int Key { get; set; }
|
|
}
|
|
|
|
|
|
}
|