20 lines
405 B
C#
20 lines
405 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 LxmCustomPackageResp
|
|
{
|
|
/// <summary>
|
|
/// 套餐名
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
}
|