- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace t8_elements
- {
- class Phone
- {
- public string Title { get; set; }
- public string Company { get; set; }
- public int Price { get; set; }
- }
- }
|