mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
General module - Fix namespace to avoid collision with Core type
This commit is contained in:
parent
04f925972f
commit
5f34c8afac
@ -1,6 +0,0 @@
|
||||
namespace Artemis.Plugins.Modules.General.DataModel.Windows
|
||||
{
|
||||
public class WindowsDataModel
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -1,11 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Artemis.Plugins.Modules.General.DataModel.Windows;
|
||||
using Artemis.Core.DataModelExpansions;
|
||||
using Artemis.Plugins.Modules.General.DataModels.Windows;
|
||||
|
||||
namespace Artemis.Plugins.Modules.General.DataModel
|
||||
namespace Artemis.Plugins.Modules.General.DataModels
|
||||
{
|
||||
public class GeneralDataModel : Core.DataModelExpansions.DataModel
|
||||
public class GeneralDataModel : DataModel
|
||||
{
|
||||
public GeneralDataModel()
|
||||
{
|
||||
@ -25,7 +26,7 @@ namespace Artemis.Plugins.Modules.General.DataModel
|
||||
public List<TimeDataModel> TestTimeList { get; set; }
|
||||
}
|
||||
|
||||
public class TimeDataModel : Core.DataModelExpansions.DataModel
|
||||
public class TimeDataModel : DataModel
|
||||
{
|
||||
public DateTime CurrentTime { get; set; }
|
||||
public DateTime CurrentTimeUTC { get; set; }
|
||||
@ -2,7 +2,7 @@
|
||||
using Artemis.Core;
|
||||
using Artemis.Core.DataModelExpansions;
|
||||
|
||||
namespace Artemis.Plugins.Modules.General.DataModel.Windows
|
||||
namespace Artemis.Plugins.Modules.General.DataModels.Windows
|
||||
{
|
||||
public class WindowDataModel
|
||||
{
|
||||
@ -0,0 +1,6 @@
|
||||
namespace Artemis.Plugins.Modules.General.DataModels.Windows
|
||||
{
|
||||
public class WindowsDataModel
|
||||
{
|
||||
}
|
||||
}
|
||||
@ -2,8 +2,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using Artemis.Core.Modules;
|
||||
using Artemis.Plugins.Modules.General.DataModel;
|
||||
using Artemis.Plugins.Modules.General.DataModel.Windows;
|
||||
using Artemis.Plugins.Modules.General.DataModels;
|
||||
using Artemis.Plugins.Modules.General.DataModels.Windows;
|
||||
using Artemis.Plugins.Modules.General.Utilities;
|
||||
using Artemis.Plugins.Modules.General.ViewModels;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user