Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. public class JobViewModel
  2.     {
  3.         public Guid Id { get; set; }
  4.         public string Title { get; set; }
  5.         public string Description { get; set; }
  6.         public UserViewModel User { get; set; }
  7.         public JobStatus Status { get; set; }
  8.         public JobCategory Category { get; set; }
  9.         public string Salary { get; set; }
  10.         public string WorkTime { get; set; }
  11.         public DateTime Date { get; set; }
  12.         public string Subway { get; set; }
  13.         public string Address { get; set; }
  14.         public JobType Type { get; set; }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement