Advertisement
Stanislav2812

Untitled

Aug 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace YaYuniorLesson8_OOP
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.         }
  15.     }
  16.  
  17.     class Tenant
  18.     {
  19.         public string Name;
  20.         public int Age;
  21.     }
  22.  
  23.     class House
  24.     {
  25.         public ConsoleColor Color;
  26.         public string Adress;
  27.         public int MaxNum;
  28.         private string[] group;
  29.        
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement