12345678910111213141516171819202122232425262728293031323334 |
- using System;
- namespace RemoteControlLib.Codes
- {
-
-
-
- [Serializable]
- public class ThreeCode : DoubleCode
- {
- private string foot;
-
-
-
- public string Foot
- {
- get { return foot; }
- set { foot = value; }
- }
- public override string ToString()
- {
- return base.ToString() + ",Foot=" + foot;
- }
- }
- }
|