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.
22 lines
751 B
22 lines
751 B
namespace BrilliantSightClient.Model.GradeResult.Entity; |
|
|
|
public class RowDetail |
|
{ |
|
public string? itemName { get; set; } |
|
public string? Avg { get; set; } |
|
public string? Dev { get; set; } |
|
public string? Min { get; set; } |
|
public string? Max { get; set; } |
|
public string? item1 { get; set; } |
|
public string? item2 { get; set; } |
|
public string? item3 { get; set; } |
|
public string? item4 { get; set; } |
|
public string? item5 { get; set; } |
|
public string? item6 { get; set; } |
|
public string? item7 { get; set; } |
|
public string? item8 { get; set; } |
|
public string? CutLevel { get; set; } |
|
public string? SymLevel { get; set; } |
|
public int? MaxIndex { get; set; } |
|
public int? MinIndex { get; set; } |
|
} |