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
{
///
/// 调度生成海报的参数
///
public class GetShopShareCodeRequst
{
///
/// 店铺参加活动的主键
///
public Guid shopActivityId { get; set; }
///
/// 登录信息
///
public LoginInfo loginInfo { get; set; }
}
}