LSFE/LSFE.Infrastructure/Dto/Planning/PlanByUserIdRequest.cs
2026-07-30 10:31:04 +08:00

15 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto.Planning
{
public class PlanByUserIdRequest
{
public string? UserId { get; set; }
}
}