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.
 
 
 

14 lines
447 B

namespace Tiobon.Core.Model;
public class CompletionRateBLT
{
public int Id { get; set; }
public int RowNo { get; set; }
public string Month { get; set; }
public string DeptName { get; set; }
public string DeptFullName { get; set; }
public int CourseCount { get; set; } = 0;
public int SubmitCount { get; set; } = 0;
public int CompletionRate { get; set; } = 0;
public string CompletionRate1 { get; set; }
}