d_sms_service/APT.BaseData.Domain/ApiModel/Platform/ReceiveModel.cs

14 lines
250 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using System;
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel.Platform
{
public class ReceiveModel
{
/// <summary>
/// id
/// </summary>
public List<Guid> Ids { get; set; }
}
}