26 lines
611 B
C#
Raw Normal View History

2025-04-24 18:31:27 +08:00
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; }
}
}