Skip to content

Commit 45845e8

Browse files
committed
Move DeviceGroup to correct namespace.
1 parent 4cb129b commit 45845e8

File tree

10 files changed

+2
-11
lines changed

10 files changed

+2
-11
lines changed

Server/API/OrganizationManagementController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
using Remotely.Server.Extensions;
1313
using Remotely.Server.Services;
1414
using Remotely.Shared.Entities;
15-
using Remotely.Shared.Models;
1615
using Remotely.Shared.ViewModels;
1716
using System;
1817
using System.Text;

Server/Components/Devices/DeviceCard.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
using Remotely.Server.Services;
1212
using Remotely.Shared.Entities;
1313
using Remotely.Shared.Enums;
14-
using Remotely.Shared.Models;
1514
using Remotely.Shared.Utilities;
1615
using Remotely.Shared.ViewModels;
1716
using System;

Server/Components/Devices/DevicesFrame.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Remotely.Server.Services;
99
using Remotely.Shared.Attributes;
1010
using Remotely.Shared.Entities;
11-
using Remotely.Shared.Models;
1211
using Remotely.Shared.Utilities;
1312
using System;
1413
using System.Collections;

Server/Components/ModalContents/EditDeviceGroup.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using Microsoft.AspNetCore.Components;
33
using Remotely.Server.Services;
44
using Remotely.Shared.Entities;
5-
using Remotely.Shared.Models;
65
using System.Linq;
76
using System.Threading.Tasks;
87

Server/Components/Scripts/RunScript.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
using Remotely.Server.Services;
1111
using Remotely.Shared.Entities;
1212
using Remotely.Shared.Enums;
13-
using Remotely.Shared.Models;
1413
using Remotely.Shared.Utilities;
1514
using System;
1615
using System.Collections.Generic;

Server/Components/Scripts/ScriptSchedules.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using Remotely.Server.Pages;
55
using Remotely.Server.Services;
66
using Remotely.Shared.Entities;
7-
using Remotely.Shared.Models;
87
using Remotely.Shared.Utilities;
98
using System;
109
using System.Collections.Generic;

Server/Pages/ManageOrganization.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using Remotely.Server.Components.ModalContents;
99
using Remotely.Server.Services;
1010
using Remotely.Shared.Entities;
11-
using Remotely.Shared.Models;
1211
using Remotely.Shared.ViewModels;
1312
using System;
1413
using System.Collections.Generic;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.ComponentModel.DataAnnotations.Schema;
55
using System.Text.Json.Serialization;
6-
using Remotely.Shared.Entities;
76

8-
namespace Remotely.Shared.Models;
7+
namespace Remotely.Shared.Entities;
98

109
public class DeviceGroup
1110
{

Shared/Entities/Organization.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Immense.RemoteControl.Shared.Models;
22
using Remotely.Shared.Enums;
3-
using Remotely.Shared.Models;
43
using System;
54
using System.Collections.Generic;
65
using System.ComponentModel.DataAnnotations;
@@ -15,6 +14,7 @@ public class Organization
1514
public ICollection<ApiToken> ApiTokens { get; set; } = new List<ApiToken>();
1615

1716
public BrandingInfo? BrandingInfo { get; set; }
17+
public string? BrandingInfoId { get; set; }
1818

1919
public ICollection<ScriptResult> ScriptResults { get; set; } = new List<ScriptResult>();
2020

Shared/Entities/ScriptSchedule.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Remotely.Shared.Enums;
2-
using Remotely.Shared.Models;
32
using Remotely.Shared.Utilities;
43
using System;
54
using System.Collections.Generic;

0 commit comments

Comments
 (0)