Advertisement
limun11

Spolovi

Jan 17th, 2022
976
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace DLWMS.WinForms.P9
  9. {
  10.     [Table("Spolovi")]
  11.     public class Spolovi
  12.     {
  13.         public int Id { get; set; }
  14.         public string Naziv { get; set; }
  15.         public override string ToString()
  16.         {
  17.             return Naziv;
  18.         }
  19.  
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement