Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class Car
  2. {
  3. public int Id { get; set; }
  4. public string Producer { get; set; }
  5. public string Model { get; set; }
  6. public DateTime ProductionDate { get; set; }
  7. public bool IsOnWarranty { get; set; }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement