13 lines
336 B
C#
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; } = "";
|
|
}
|
|
}
|