Class1.cs 266 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace WpfApp4.model
  6. {
  7. public class mechanic
  8. {
  9. public required string name { get; set; }
  10. public string doljnost { get; set; }
  11. }
  12. }