Advertisement
Guest User

Serializable

a guest
Dec 23rd, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.33 KB | None | 0 0
  1. public class Employee
  2. {
  3.     public int Id { get; set; }
  4.     public string Code { get; set; }
  5.     public string Name { get; set; }
  6.     public string BirthDay { get; set; }
  7.     public string Gender { get; set; }
  8.     public string BirthPlace { get; set; }
  9.     public int Age { get; set; }
  10.     public string Address { get; set; }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement