12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Web;
- namespace EVCB_OCPP.WEBAPI.Models.WebAPI.Dto
- {
- public class ChargePointDefaultPriceRequest
- {
-
-
-
-
- [StringLength(100)]
- public string DefaultPrice { set; get; }
- }
- public class UserPriceRequest
- {
- [StringLength(20)]
- public string IdTag { set; get; }
-
-
-
-
- [StringLength(100)]
- public string DefaultPrice { set; get; }
- }
- public class FinalCostRequest
- {
-
- public int SessionId { set; get; }
-
-
-
-
- [StringLength(200)]
- public string Description { set; get; }
- }
- }
|