KnowedgeStatisticsDto.cs 242 B

12345678910
  1. namespace Hotline.Share.Dtos.Knowledge
  2. {
  3. public class KnowedgeStatisticsDto
  4. {
  5. public int Index { get; set; }
  6. public string? OrgName { get; set; }
  7. public DateTime? LastModificationTime { get; set; }
  8. }
  9. }