Skip to content

Commit 91ea5fc

Browse files
committed
Collapsed OnTopic.ViewModels.Items back into OnTopic.ViewModels
Originally, `OnTopic.ViewModels.Items` was in the `OnTopic.ViewModels` namespace. To help organize the growing library, I moved the item types into the new `Items` folder—and, with that, namespace. But these don't really make sense in their own namespace, even if it makes sense organizationally. Given that, I've renamed the folder from `Items` to `_items` to help differentiate it from namespaces, and moved each of the items back into the `OnTopic.ViewModels` namespace.
1 parent 0ec541f commit 91ea5fc

8 files changed

Lines changed: 5 additions & 8 deletions

OnTopic.Tests/TopicMappingServiceTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
using OnTopic.Tests.ViewModels;
2424
using OnTopic.Tests.ViewModels.Metadata;
2525
using OnTopic.ViewModels;
26-
using OnTopic.ViewModels.Items;
2726

2827
namespace OnTopic.Tests {
2928

OnTopic.ViewModels/ContentListTopicViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
| Project Topics Library
55
\=============================================================================================================================*/
66
using OnTopic.ViewModels.Collections;
7-
using OnTopic.ViewModels.Items;
87

98
namespace OnTopic.ViewModels {
109

OnTopic.ViewModels/TopicViewModelLookupService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using System.Collections.Generic;
88
using System.Reflection;
99
using OnTopic.Lookup;
10-
using OnTopic.ViewModels.Items;
1110

1211
namespace OnTopic.ViewModels {
1312

OnTopic.ViewModels/Items/ContentItemTopicViewModel.cs renamed to OnTopic.ViewModels/_items/ContentItemTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
\=============================================================================================================================*/
66
using System;
77

8-
namespace OnTopic.ViewModels.Items {
8+
namespace OnTopic.ViewModels {
99

1010
/*============================================================================================================================
1111
| VIEW MODEL: CONTENT ITEM TOPIC

OnTopic.ViewModels/Items/ItemTopicViewModel.cs renamed to OnTopic.ViewModels/_items/ItemTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| Project Topics Library
55
\=============================================================================================================================*/
66

7-
namespace OnTopic.ViewModels.Items {
7+
namespace OnTopic.ViewModels {
88

99
/*============================================================================================================================
1010
| VIEW MODEL: ITEM TOPIC

OnTopic.ViewModels/Items/ListTopicViewModel.cs renamed to OnTopic.ViewModels/_items/ListTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
\=============================================================================================================================*/
66
using System.Collections;
77

8-
namespace OnTopic.ViewModels.Items {
8+
namespace OnTopic.ViewModels {
99

1010
/*============================================================================================================================
1111
| VIEW MODEL: LIST

OnTopic.ViewModels/Items/LookupListItemTopicViewModel.cs renamed to OnTopic.ViewModels/_items/LookupListItemTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| Project Topics Library
55
\=============================================================================================================================*/
66

7-
namespace OnTopic.ViewModels.Items {
7+
namespace OnTopic.ViewModels {
88

99
/*============================================================================================================================
1010
| VIEW MODEL: LOOKUP LIST ITEM TOPIC

OnTopic.ViewModels/Items/SlideTopicViewModel.cs renamed to OnTopic.ViewModels/_items/SlideTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
| Project Topics Library
55
\=============================================================================================================================*/
66

7-
namespace OnTopic.ViewModels.Items {
7+
namespace OnTopic.ViewModels {
88

99
/*============================================================================================================================
1010
| VIEW MODEL: SLIDE TOPIC

0 commit comments

Comments
 (0)