27 lines
572 B
C#
27 lines
572 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MyCode.Project.Domain.Message.Request.BaoDian
|
|||
|
|
{
|
|||
|
|
public class MemberInvitationReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 店铺id
|
|||
|
|
/// </summary>
|
|||
|
|
public Guid? ShopId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 所属时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime? VersionTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///日期
|
|||
|
|
/// </summary>
|
|||
|
|
public TimeRange TimeRange { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|