2025-12-29 01:47:11 +08:00

13 lines
336 B
C#

namespace Milimoe.FunGame.WebAPI.Models
{
public class SCDTO
{
public long UID { get; set; }
public long Group { get; set; }
public double SC { get; set; }
public int Year { get; set; } = 0;
public int Month { get; set; } = 0;
public string Content { get; set; } = "";
}
}