12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Model.Dto
- {
- public class ProductDto:BaseDto
- {
- private int id;
- public int Id
- {
- get { return id; }
- set { id = value; OnPropertyChanged(); }
- }
- private string name;
- public string Name
- {
- get { return name; }
- set { name = value; OnPropertyChanged(); }
- }
-
- }
- }
|