using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 发送邀请签约短信
///
[Resource([EnumResourceController.UserServerEnterpriseEmployee])]
public class SendInviteElectronSignSmsCommand : IRequest
{
public SendInviteElectronSignSmsCommand()
{
Ids = [];
}
///
/// Id
///
public List Ids { get; set; }
}
}