Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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