StatisticDto.cs 284 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace WeEngine.Statistic
  3. {
  4. public class StatisticDto
  5. {
  6. public StatisticUserDto UserInfo { get; set; }
  7. public StatisticCampDto CampInfo { get; set; }
  8. public List<PlayingCampDto> PlayingInfo { get; set; }
  9. }
  10. }