Files
FSI.BT.IR.Tools/FSI.BT.Tools/TimeStampToClipboard/Settings/IInterface.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

25 lines
590 B
C#

using Config.Net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.TimeStampToClipboard.Settings
{
public class Interface
{
public interface IInterface
{
[Option(DefaultValue = "Alt+Ctrl+C")]
string HotKey { get; set; }
[Option(DefaultValue = "_yyyyMMdd_HHmmss")]
string Format { get; set; }
[Option(DefaultValue = "false")]
bool SendHotkeyInsteadKillOtherInstances { get; set; }
}
}
}