You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web/Tiobon.Core.Model/ViewModels/Extend/QuestionErrorRanking.cs

14 lines
389 B

namespace Tiobon.Core.Model.ViewModels.Extend;
public class QuestionErrorRanking
{
public long Id { get; set; }
public string QuestionContent { get; set; }
public string QuestionNo { get; set; }
public decimal ErrorCount { get; set; }
public decimal TotalCount { get; set; }
public string Percent1 { get; set; }
public decimal Percent { get; set; }
}