20 lines
531 B
C#
20 lines
531 B
C#
using LSFE.Infrastructure.Converter;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto
|
|
{
|
|
public class ApprovePlanDto
|
|
{
|
|
[JsonConverter(typeof(GuidListConverter))]
|
|
public List<Guid> AppointmentIds { get; set; } = new();
|
|
public string? UserId { get; set; }
|
|
public string? MRPlanDate { get; set; }
|
|
public string? UpdatedBy { get; set; }
|
|
}
|
|
}
|