Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. private CustTypeType custTypeField;
  2.  
  3. public CustTypeType CustType
  4. {
  5. get
  6. {
  7. return this.custTypeField;
  8. }
  9. set
  10. {
  11. this.custTypeField = value;
  12. }
  13. }
  14.  
  15. public enum CustTypeType
  16. {
  17.  
  18. /// <remarks/>
  19. Business,
  20.  
  21. /// <remarks/>
  22. Personal,
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement