20 lines
439 B
C#
20 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class SendSwapEventEmailRequest
|
|
{
|
|
public List<EventEmail> EventEmailEmails { get; set; }
|
|
public DateTime ValueDate { get; set; }
|
|
}
|
|
public class EventEmail
|
|
{
|
|
public int client_id { get; set; }
|
|
public long? event_id { get; set; }
|
|
}
|
|
}
|