Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 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 Banka
  8. {
  9.     class Account
  10.     {
  11.         public string Name { get; set; }
  12.         public string Adress { get; set; }
  13.         public string Phone { get; set; }
  14.         public int Balance { get; set; }
  15.         public string Password { get; set; }
  16.         //public int RedniBroj;
  17.        
  18.         public Account( string name , string adress, string phone,int balance, string password )
  19.         {
  20.             Name = name;
  21.             Adress = adress;
  22.             Phone = phone;
  23.             Balance = balance;
  24.             Password = password;
  25.         }
  26.  
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement