HMFavorite.cs 502 B

1234567891011121314151617181920212223242526
  1. using System.Xml;
  2. using System.ComponentModel;
  3. using System.Collections.Generic;
  4. namespace System.Net.HomeMatic {
  5. public class HMFavorite : HMChannelList {
  6. public HMFavorite(HMApi Api) : base(Api) {
  7. }
  8. public HMFavorite(HMApi Api, XmlNode Data) : base(Api, Data) {
  9. }
  10. protected override string GetClassName() {
  11. return "HMFavorite";
  12. }
  13. protected override string ValuesToString() {
  14. return "";
  15. }
  16. }
  17. }