Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public interface ISetupData
  2. {
  3. Dictionary<string, string> Data { get; set; }
  4. }
  5.  
  6. public class SetupData : ISetupData
  7. {
  8. public Dictionary<string, string> Data { get; set; }
  9. }
  10.  
  11. Container.RegisterType<ISetupData, SetupData>();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement