Guest User

Untitled

a guest
Nov 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public enum FuelType
  2. {
  3. Diesel,
  4. Petrol,
  5. E10
  6. }
  7.  
  8. public FuelType Fuel
  9. {
  10. get { return _fuel; }
  11. set
  12. {
  13. _fuel = value;
  14. NotifyOfPropertyChange(nameof(Fuel));
  15. }
  16. }
Add Comment
Please, Sign In to add comment