Files
number_zj/20220330_Vote/Vote.Services/Dto/UserScore20250801.cs

31 lines
553 B
C#

using System.Collections.Generic;
namespace Vote.Services.Dto;
public class UserScore20250801
{
}
public class ExpertColumn
{
public string prop { get; set; }
public string label { get; set; }
}
public class SubmitEntity
{
public string userId { get; set; }
public List<UserScoreInput> scores { get; set; }
public decimal? finalscore { get; set; }
}
public class UserScoreInput
{
public string expertId { get; set; }
public decimal? score { get; set; }
}
public class ListInput
{
public string order { get; set; }
}