Skip to content

Commit

Permalink
🧹 enum with ints
Browse files Browse the repository at this point in the history
  • Loading branch information
nop77svk committed Jan 26, 2024
1 parent b3fc05c commit 442c636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jwl.jira/ServerApiFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ public static class ServerApiFactory
{
public enum ServerClass
{
VanillaJira,
TempoTimeSheetsPlugin,
ICTimePlugin
VanillaJira = 0,
TempoTimeSheetsPlugin = 1,
ICTimePlugin = 2
}

public static IJiraServerApi CreateApi(HttpClient httpClient, string userName, ServerClass serverClass)
Expand Down

0 comments on commit 442c636

Please sign in to comment.