Advertisement
hungcoder92

[C#] Introducing the RestSharp library for calling APIs in Dotnet

Apr 23rd, 2022
1,744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 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