選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SelectionLevelInfoDto.cs 232B

123456789
  1. namespace Diligent.WebAPI.Contracts.DTOs.Stats
  2. {
  3. public class SelectionLevelInfoDto
  4. {
  5. public string Level { get; set; }
  6. public int CountAll { get; set; }
  7. public int CountDone { get; set; }
  8. }
  9. }