Advertisement
Rakshalpha

Job

Aug 19th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace DelegatesAndEvents
  6. {
  7.     public class Job
  8.     {
  9.         public int ID { get; set; }
  10.         public string Title { get; set; }
  11.         public DateTime StartDate { get; set; }
  12.         public DateTime EndDate { get; set; }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement