Advertisement
kisame1313

Untitled

Jul 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5.     static void Main ( string [] args )
  6.     {
  7.     }
  8. }
  9. class House
  10. {
  11.     ConsoleColor houseColor;
  12.     string adress;
  13.     int maxTenants;
  14.     private Tenant [] tenants;
  15. }
  16.  
  17. class Tenant
  18. {
  19.     string name;
  20.     byte age;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement