Rate.cs 262B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplication3.Clases
  6. {
  7. public class Rate
  8. {
  9. public decimal StartTime { get; set; }
  10. public decimal Value { get; set; }
  11. }
  12. }