26 lines
611 B
C#
26 lines
611 B
C#
|
using MyCode.Project.Domain.Message.Response.User;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Request.Activity
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 调度生成海报的参数
|
|||
|
/// </summary>
|
|||
|
public class GetShopShareCodeRequst
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 店铺参加活动的主键
|
|||
|
/// </summary>
|
|||
|
public Guid shopActivityId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 登录信息
|
|||
|
/// </summary>
|
|||
|
public LoginInfo loginInfo { get; set; }
|
|||
|
}
|
|||
|
}
|