Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class MyConfigurableModule : ConfigManager<MyConfigurableModule>
  2. {
  3. public string Value1 { get; set; }
  4. public string Value2 { get; set; }
  5. public int Value3 { get; set; }
  6.  
  7. public MyConfigurableModule()
  8. {
  9. this.Value1 = "Value1";
  10. this.Value2 = "Value2";
  11. this.Value3 = 3;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement