Skip to content

Commit 42b60ab

Browse files
Merge pull request #8 from SubathraKaliamoorthy/master
v28.1.33
2 parents a16897e + 1b14c04 commit 42b60ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+331
-365
lines changed

Controllers/HomeController.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Controllers
1+
namespace StoryEstimator.Showcase.Controllers
22
{
33
using System;
44
using System.Collections.Generic;
@@ -8,10 +8,10 @@
88
using Microsoft.AspNetCore.Mvc;
99
using Microsoft.Extensions.FileProviders;
1010
using Newtonsoft.Json;
11-
using PlanningPoker.Showcase.Models;
12-
using PlanningPoker.Showcase.Models.Data;
13-
using PlanningPoker.Showcase.Models.SignalR;
14-
using PlanningPoker.Showcase.Utils;
11+
using StoryEstimator.Showcase.Models;
12+
using StoryEstimator.Showcase.Models.Data;
13+
using StoryEstimator.Showcase.Models.SignalR;
14+
using StoryEstimator.Showcase.Utils;
1515

1616
/// <summary>
1717
/// Home controller

Models/Data/CardList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System.Collections.Generic;
44

Models/Data/Enum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
public enum RoomStatusEnum
44
{

Models/Data/RoomList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/RoomPlayerList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/StoryList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/StoryPlayerList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System;
44
using System.Collections.Generic;

Models/Data/UserList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace PlanningPoker.Showcase.Models.Data
1+
namespace StoryEstimator.Showcase.Models.Data
22
{
33
using System.Collections.Generic;
44

Models/PlayObjects.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace PlanningPoker.Showcase.Models
1+
namespace StoryEstimator.Showcase.Models
22
{
33
using System;
44
using System.Collections.Generic;
5-
using PlanningPoker.Showcase.Models.Data;
6-
using PlanningPoker.Showcase.Utils;
5+
using StoryEstimator.Showcase.Models.Data;
6+
using StoryEstimator.Showcase.Utils;
77

88
/// <summary>
99
/// Play objects

Models/RoomObjects.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
namespace PlanningPoker.Showcase.Models
1+
namespace StoryEstimator.Showcase.Models
22
{
3-
using PlanningPoker.Showcase.Utils;
3+
using StoryEstimator.Showcase.Utils;
44
using System;
55
using System.Collections.Generic;
66

0 commit comments

Comments
 (0)