wxr
2019-12-25 3df772e4fdd553b2954e8f3f55ce7ff5905407c3
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
namespace Shared
{
[System.Serializable]
    public class FoolHeatPanel : FoolHeat
    {
        public FoolHeatPanel ()
        {
            this.Type = DeviceType.FoolHeatPanel;
            DeviceTextID = SimpleControl.R.MyInternationalizationString.FoolHeat;
        }
    }
}