Skip to content

Commit d6a866f

Browse files
committed
Rename Models to Data (text)
1 parent e62426e commit d6a866f

32 files changed

+42
-42
lines changed

Drums/VDrumExplorer.Console/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
using System.Threading;
88
using System.Threading.Tasks;
99
using VDrumExplorer.Midi;
10-
using VDrumExplorer.Models;
11-
using VDrumExplorer.Models.Fields;
10+
using VDrumExplorer.Data;
11+
using VDrumExplorer.Data.Fields;
1212

1313
namespace VDrumExplorer.ConsoleDemo
1414
{
@@ -149,7 +149,7 @@ select Task.Run(async delegate {
149149
}
150150

151151
private static ModuleFields LoadTd17ModuleFields() =>
152-
ModuleFields.FromAssemblyResources(typeof(ModuleFields).Assembly, "VDrumExplorer.Models.TD17", "TD17.json");
152+
ModuleFields.FromAssemblyResources(typeof(ModuleFields).Assembly, "VDrumExplorer.Data.TD17", "TD17.json");
153153

154154
private static SysExClient CreateClientForTd17()
155155
{

Drums/VDrumExplorer.Data.Test/Class1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace VDrumExplorer.Models.Test
3+
namespace VDrumExplorer.Data.Test
44
{
55
public class Class1
66
{

Drums/VDrumExplorer.Data/DictionaryExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Collections.ObjectModel;
33

4-
namespace VDrumExplorer.Models
4+
namespace VDrumExplorer.Data
55
{
66
internal static class DictionaryExtensions
77
{

Drums/VDrumExplorer.Data/Fields/BooleanField.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace VDrumExplorer.Models.Fields
5+
namespace VDrumExplorer.Data.Fields
66
{
77
public class BooleanField : FieldBase, IPrimitiveField
88
{

Drums/VDrumExplorer.Data/Fields/Container.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using VDrumExplorer.Models.Fields;
3+
using VDrumExplorer.Data.Fields;
44

5-
namespace VDrumExplorer.Models.Fields
5+
namespace VDrumExplorer.Data.Fields
66
{
77
/// <summary>
88
/// A data container representing a portion of memory.

Drums/VDrumExplorer.Data/Fields/DynamicOverlay.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33

4-
namespace VDrumExplorer.Models.Fields
4+
namespace VDrumExplorer.Data.Fields
55
{
66
public sealed class DynamicOverlay : FieldBase, IContainerField
77
{

Drums/VDrumExplorer.Data/Fields/EnumField.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace VDrumExplorer.Models.Fields
3+
namespace VDrumExplorer.Data.Fields
44
{
55
public sealed class EnumField : FieldBase, IPrimitiveField
66
{

Drums/VDrumExplorer.Data/Fields/FieldBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace VDrumExplorer.Models.Fields
3+
namespace VDrumExplorer.Data.Fields
44
{
55
public abstract class FieldBase : IField
66
{

Drums/VDrumExplorer.Data/Fields/FieldVisitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace VDrumExplorer.Models.Fields
3+
namespace VDrumExplorer.Data.Fields
44
{
55
public abstract class FieldVisitor
66
{

Drums/VDrumExplorer.Data/Fields/IContainerField.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace VDrumExplorer.Models.Fields
3+
namespace VDrumExplorer.Data.Fields
44
{
55
public interface IContainerField : IField
66
{

0 commit comments

Comments
 (0)