Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

LocSaleDto.cs 273 B

2 lat temu
2 lat temu
2 lat temu
1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace DataVApi.Order.Dto
  7. {
  8. public class LocSaleDto
  9. {
  10. public string City { get; set; }
  11. public int Count { get; set; }
  12. }
  13. }