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; } }