Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Initial Commit
  • Loading branch information
DiegoGalante committed Jun 21, 2021
commit 9a8584bc48a8886fce1902d89f25beb03cc1d5ef
15 changes: 15 additions & 0 deletions AzuereDevopsStateTracker/AzuereDevopsStateTracker.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<Folder Include="Data\" />
<Folder Include="Interfaces\" />
<Folder Include="Configurations\" />
<Folder Include="DTOs\" />
<Folder Include="Services\" />
</ItemGroup>

</Project>
25 changes: 25 additions & 0 deletions AzuereDevopsStateTracker/AzuereDevopsStateTracker.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31402.337
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzuereDevopsStateTracker", "AzuereDevopsStateTracker.csproj", "{E00DFF81-08B1-4A71-82C4-7CED951299BE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E00DFF81-08B1-4A71-82C4-7CED951299BE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {53133A2B-5357-47B5-A1C4-30953F789623}
EndGlobalSection
EndGlobal
16 changes: 16 additions & 0 deletions AzuereDevopsStateTracker/Entities/WorkItem.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace AzuereDevopsStateTracker.Entities
{
public class WorkItem
{
public int Id { get; private set; }
public string AssignedTo { get; private set; }
public string Type { get; private set; }

public WorkItem(int id, string assignedTo, string type)
{
Id = id;
AssignedTo = assignedTo;
Type = type;
}
}
}
12 changes: 12 additions & 0 deletions AzuereDevopsStateTracker/Entities/WorkItemChanges.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AzuereDevopsStateTracker.Entities
{
class WorkItemChanges
{
}
}
12 changes: 12 additions & 0 deletions AzuereDevopsStateTracker/Entities/WorkItemStatusTime.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace AzuereDevopsStateTracker.Entities
{
class WorkItemStatusTime
{
}
}