ZhiYi/ZhiYi.Core.Application/Dtos/Shared/UseSharedCodeDto.cs

19 lines
393 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos.Shared
{
/// <summary>
/// 使用分享码定义
/// </summary>
public class UseSharedCodeDto
{
/// <summary>
/// 分享码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 使用人员账号ID
/// </summary>
public long UserId { get; set; }
}
}