PerformanceForList.cs 281 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class PerformanceForList
  6. {
  7. public int Id { get; set; }
  8. public string Name { get; set; }
  9. public decimal Amount { get; set; }
  10. public int Count { get; set; }
  11. }
  12. }