d_sms_service/APT.BaseData.Domain/ApiModel/Platform/ReceiveModel.cs
2024-10-28 13:45:58 +08:00

14 lines
250 B
C#

using System;
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel.Platform
{
public class ReceiveModel
{
/// <summary>
/// id
/// </summary>
public List<Guid> Ids { get; set; }
}
}