mh_sms/APT.BaseData.Domain/ApiModel/Platform/ReceiveModel.cs
2024-01-22 09:17:01 +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; }
}
}