mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Move DeviceGroup to correct namespace.
This commit is contained in:
parent
4cb129bb80
commit
45845e8877
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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
|
||||
{
|
||||
@ -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>();
|
||||
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using Remotely.Shared.Enums;
|
||||
using Remotely.Shared.Models;
|
||||
using Remotely.Shared.Utilities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user