Advertisement
VladTheBush

C# ViewList Class

Apr 15th, 2020
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 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 Programiranje_domaci_3 {
  8.     class Knjiga {
  9.         public string Naziv { get; set; }
  10.  
  11.         public string ImeAutora { get; set; }
  12.  
  13.         public string Izdavac { get; set; }
  14.  
  15.         public string GodIzd { get; set; }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement