-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIClockifyMessageSource.cs
More file actions
39 lines (34 loc) · 1.25 KB
/
IClockifyMessageSource.cs
File metadata and controls
39 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace Bot.Clockify
{
public interface IClockifyMessageSource
{
string SetupRequest { get; }
string SetupFeedback { get; }
string SetupReject { get; }
string TaskCreationError { get; }
string TaskUnrecognized { get; }
string TaskCreation { get; }
string TaskAbort { get; }
string AddEntryFeedback { get; }
string SetWorkingHoursFeedback { get; }
string SetWorkingHoursUnchangedFeedback { get; }
string EntryFillUnderstandingError { get; }
string AmbiguousProjectError { get; }
string ProjectUnrecognized { get; }
string TaskUnrecognizedRetry { get; }
string TaskSelectionQuestion { get; }
string NewTask { get; }
string No { get; }
string ReportDateRangeError { get; }
string ReportWorkedPeriodUnrecognized { get; }
string ReportTotalHours { get; }
string ReportNoWork { get; }
string ReportWork { get; }
string ReportDateRangeExceedOneYear { get; }
string RemindStoppedAlready { get; }
string RemindStopAnswer { get; }
string RemindEntryFill { get; }
string RemindEntryFillYesterday { get; }
string FollowUp { get; }
}
}