33 lines
597 B
C#
33 lines
597 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 LxmUseDaysResp
|
|
{
|
|
/// <summary>
|
|
/// 使用天数
|
|
/// </summary>
|
|
public DateTime CreateTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 店铺id
|
|
/// </summary>
|
|
public string ShopId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|