Move DeviceGroup to correct namespace.

This commit is contained in:
Jared Goodwin 2023-08-01 11:35:20 -07:00
parent 4cb129bb80
commit 45845e8877
10 changed files with 2 additions and 11 deletions

View File

@ -12,7 +12,6 @@ using Remotely.Server.Auth;
using Remotely.Server.Extensions;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Models;
using Remotely.Shared.ViewModels;
using System;
using System.Text;

View File

@ -11,7 +11,6 @@ using Remotely.Server.Models;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Enums;
using Remotely.Shared.Models;
using Remotely.Shared.Utilities;
using Remotely.Shared.ViewModels;
using System;

View File

@ -8,7 +8,6 @@ using Remotely.Server.Models;
using Remotely.Server.Services;
using Remotely.Shared.Attributes;
using Remotely.Shared.Entities;
using Remotely.Shared.Models;
using Remotely.Shared.Utilities;
using System;
using System.Collections;

View File

@ -2,7 +2,6 @@
using Microsoft.AspNetCore.Components;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Models;
using System.Linq;
using System.Threading.Tasks;

View File

@ -10,7 +10,6 @@ using Remotely.Server.Pages;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Enums;
using Remotely.Shared.Models;
using Remotely.Shared.Utilities;
using System;
using System.Collections.Generic;

View File

@ -4,7 +4,6 @@ using Microsoft.AspNetCore.Components.Forms;
using Remotely.Server.Pages;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Models;
using Remotely.Shared.Utilities;
using System;
using System.Collections.Generic;

View File

@ -8,7 +8,6 @@ using Remotely.Server.Components;
using Remotely.Server.Components.ModalContents;
using Remotely.Server.Services;
using Remotely.Shared.Entities;
using Remotely.Shared.Models;
using Remotely.Shared.ViewModels;
using System;
using System.Collections.Generic;

View File

@ -3,9 +3,8 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
using Remotely.Shared.Entities;
namespace Remotely.Shared.Models;
namespace Remotely.Shared.Entities;
public class DeviceGroup
{

View File

@ -1,6 +1,5 @@
using Immense.RemoteControl.Shared.Models;
using Remotely.Shared.Enums;
using Remotely.Shared.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@ -15,6 +14,7 @@ public class Organization
public ICollection<ApiToken> ApiTokens { get; set; } = new List<ApiToken>();
public BrandingInfo? BrandingInfo { get; set; }
public string? BrandingInfoId { get; set; }
public ICollection<ScriptResult> ScriptResults { get; set; } = new List<ScriptResult>();

View File

@ -1,5 +1,4 @@
using Remotely.Shared.Enums;
using Remotely.Shared.Models;
using Remotely.Shared.Utilities;
using System;
using System.Collections.Generic;