v1.2
This commit is contained in:
24
FSI.BT.Tools/TimeStampToClipboard/Settings/IInterface.cs
Normal file
24
FSI.BT.Tools/TimeStampToClipboard/Settings/IInterface.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user