21 lines
351 B
C#
21 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.Lxm
|
|
{
|
|
/// <summary>
|
|
/// 卡券
|
|
/// </summary>
|
|
public class LxmCardResp
|
|
{
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|