This commit is contained in:
2025-09-02 14:52:56 +08:00
parent c4d6c52196
commit ae49652868
11 changed files with 415 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.AdminReport.PrdReport
{
public class YearAndMonth
{
public int Year { get; set; }
public int Month { get; set; }
}
}