File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 3
3
/// <summary>
4
4
/// Priority of a task.
5
5
/// </summary>
6
+ /// <remarks>
7
+ /// The priority of the task (a number between 1 and 4, 4 for very urgent and 1 for natural).
8
+ /// Note: Keep in mind that very urgent is the priority 1 on clients. So, p1 will return 4 in the API.
9
+ /// </remarks>
6
10
public enum Priority : byte
7
11
{
8
12
/// <summary>
9
13
/// The priority1
10
14
/// </summary>
11
- Priority1 = 1 ,
15
+ Priority1 = 4 ,
12
16
13
17
/// <summary>
14
18
/// The priority2
15
19
/// </summary>
16
- Priority2 = 2 ,
20
+ Priority2 = 3 ,
17
21
18
22
/// <summary>
19
23
/// The priority3
20
24
/// </summary>
21
- Priority3 = 3 ,
25
+ Priority3 = 2 ,
22
26
23
27
/// <summary>
24
28
/// The priority4
25
29
/// </summary>
26
- Priority4 = 4
30
+ Priority4 = 1
27
31
}
28
32
}
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Description >A Todoist API client for .NET</Description >
5
- <VersionPrefix >8.1 .0</VersionPrefix >
5
+ <VersionPrefix >9.0 .0</VersionPrefix >
6
6
<Authors >Oleg Shevchenko, Ahmed Zaki</Authors >
7
7
<TargetFrameworks >netstandard2.0;net462</TargetFrameworks >
8
8
<GenerateDocumentationFile >true</GenerateDocumentationFile >
You can’t perform that action at this time.
0 commit comments