Interfaces.psm1
1 2 3 4 5 6 7 8 9 10 11 |
Add-Type -TypeDefinition @' public interface IPathInfo { string Name { get; set; } string Path { get; set; } } public interface ITheme : IPathInfo { string[] Modules { get; } object this[System.String module] { get; set; } } '@ |