refactor: rename LME.Shared namespaces to LME.Common for consistency

This commit is contained in:
Felix 2026-04-17 17:43:23 +03:00
parent 94fcbc535e
commit 95ebe28999
3 changed files with 4 additions and 4 deletions

View File

@ -2,5 +2,5 @@ global using Shared.Services;
global using Shared.Services.Hybrid; global using Shared.Services.Hybrid;
global using Shared.Models.Base; global using Shared.Models.Base;
global using AppInit = Shared.CoreInit; global using AppInit = Shared.CoreInit;
global using LME.Shared.Online; global using LME.Common.Online;
global using LME.Shared.Update; global using LME.Common.Update;

View File

@ -1,7 +1,7 @@
using Shared; using Shared;
using System; using System;
namespace LME.Shared.Online namespace LME.Common.Online
{ {
public static class OnlineRegistry public static class OnlineRegistry
{ {

View File

@ -10,7 +10,7 @@ using System.Text;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace LME.Shared.Update namespace LME.Common.Update
{ {
public sealed class ModuleUpdateService public sealed class ModuleUpdateService
{ {