| 1234567891011121314151617181920212223242526 |
- using System.Xml;
- using System.ComponentModel;
- using System.Collections.Generic;
- namespace System.Net.HomeMatic {
- public class HMFavorite : HMChannelList {
- public HMFavorite(HMApi Api) : base(Api) {
- }
- public HMFavorite(HMApi Api, XmlNode Data) : base(Api, Data) {
- }
- protected override string GetClassName() {
- return "HMFavorite";
- }
- protected override string ValuesToString() {
- return "";
- }
- }
- }
|