15 lines
294 B
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons
{
public class PersonalGoalInfoReqDto
{
public int UserId { get; set; }
public DateTime Month { get; set; }
}
}