1
0
mirror of https://github.com/salexdv/Telemonitor1C.git synced 2025-02-21 19:06:45 +02:00
Telemonitor1C/Const.cs
2015-11-06 17:38:57 +03:00

25 lines
546 B
C#

/*
* Created by SharpDevelop.
* User: Alex
* Date: 06.11.2015
* Time: 16:20
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace Telemonitor
{
/// <summary>
/// Description of Const.
/// </summary>
public class Const
{
public const string PIC_BUTTON_START = "\u2139\ufe0f ";
public const string PIC_BUTTON_OTHER = "\u25b6\ufe0f ";
public const string PIC_BUTTON_START_REP = @"\u2139\ufe0f ";
public const string PIC_BUTTON_OTHER_REP = @"\u25b6\ufe0f ";
}
}