using System.Collections.Generic; namespace Oqtane.Themes.Theme1 { public class Theme : ITheme { public Dictionary Properties { get { Dictionary properties = new Dictionary { { "Name", "Theme1" }, { "Version", "1.0.0" } }; return properties; } } } }