DashboardDto.cs 511 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CasinosManager.Api.Dto
  6. {
  7. public class DashboardDto
  8. {
  9. public int A { get; set; }
  10. public int B { get; set; }
  11. public int C { get; set; }
  12. public int D { get; set; }
  13. public List<ConsumeModel> Consumes { get; set; }
  14. }
  15. public class ConsumeModel
  16. {
  17. public string Date { get; set; }
  18. public decimal Amount { get; set; }
  19. }
  20. }