1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Request
- {
-
-
-
- public class DeviceProductRequestDto
- {
-
-
-
- public string ProductId { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public int Stock { set; get; }
- }
- }
|