diff options
| author | 杨宇千 <crupest@outlook.com> | 2019-02-21 16:32:16 +0000 |
|---|---|---|
| committer | 杨宇千 <crupest@outlook.com> | 2019-02-21 16:32:16 +0000 |
| commit | 5452ada657b7a3a4b2a91563a5ff03dcb798c684 (patch) | |
| tree | 0f90f9a078e1db147a65b96a3c28a8ea2fe15c9e /Timeline/Configs | |
| parent | 86a1d2977ac15adc863f087b0e84890f460dc748 (diff) | |
| parent | 57f88746769432ed2d529a4f050783d84f9fb2bc (diff) | |
| download | timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.gz timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.bz2 timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.zip | |
Merged PR 3: Add unit test for front side.
Related work items: #1
Diffstat (limited to 'Timeline/Configs')
| -rw-r--r-- | Timeline/Configs/TodoListConfig.cs | 12 | ||||
| -rw-r--r-- | Timeline/Configs/TodoPageConfig.cs | 21 |
2 files changed, 21 insertions, 12 deletions
diff --git a/Timeline/Configs/TodoListConfig.cs b/Timeline/Configs/TodoListConfig.cs deleted file mode 100644 index a69e8d03..00000000 --- a/Timeline/Configs/TodoListConfig.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace Timeline.Configs -{ - public class TodoListConfig - { - public string AzureDevOpsPat { get; set; } - } -} diff --git a/Timeline/Configs/TodoPageConfig.cs b/Timeline/Configs/TodoPageConfig.cs new file mode 100644 index 00000000..d49e9dc3 --- /dev/null +++ b/Timeline/Configs/TodoPageConfig.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Timeline.Configs +{ + public class AzureDevOpsAccessInfo + { + public string Username { get; set; } + public string PersonalAccessToken { get; set; } + public string Organization { get; set; } + public string Project { get; set; } + + } + + public class TodoPageConfig + { + public AzureDevOpsAccessInfo AzureDevOpsAccessInfo { get; set; } + } +} |
