Guest User

Untitled

a guest
Sep 24th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. public class AllCatalog
  2. {
  3.     private Dictionary<Table, SPR>;
  4. }
  5.  
  6. public class Table
  7. {
  8.     public string Name { get; set; }
  9.     public string NameTable { get; set; }
  10. }
  11.  
  12. public class SPR
  13. {
  14.     public string Kod { get; set; }
  15.     public string Text { get; set; }
  16.     public override string ToString()
  17.     {
  18.         return Text;
  19.     }
  20. }
  21. public class SecondSPR : SPR
  22. {
  23.     public string Current { get; set; }
  24.     public string Vid { get; set; }
  25. }
Add Comment
Please, Sign In to add comment