Skip to content

Commit

Permalink
misc: Fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jhartmann123 authored and davidroth committed Sep 10, 2024
1 parent c17f430 commit 99a336e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/AspNetCore/src/Blazor/IComponentModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

using Microsoft.AspNetCore.Components;

namespace Fusonic.Extensions.AspNetCore.Blazor;

public interface IComponentModel<T> : IComponentModel where T : IComponent
{
Type IComponentModel.ComponentType => typeof(T);
Expand All @@ -11,4 +13,4 @@ public interface IComponentModel<T> : IComponentModel where T : IComponent
public interface IComponentModel
{
Type ComponentType { get; }
}
}
1 change: 1 addition & 0 deletions src/AspNetCore/test/Blazor/TestComponent.razor
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@using Fusonic.Extensions.AspNetCore.Blazor
@using Fusonic.Extensions.AspNetCore.Razor

<body>@Model.Name</body>
Expand Down
1 change: 1 addition & 0 deletions src/AspNetCore/test/Blazor/TestCultureComponent.razor
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@using Fusonic.Extensions.AspNetCore.Blazor
@using Fusonic.Extensions.AspNetCore.Razor

<html>
Expand Down
1 change: 1 addition & 0 deletions src/Email/test/BlazorEmailRenderingServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Text.RegularExpressions;
using System.Web;
using FluentAssertions;
using Fusonic.Extensions.AspNetCore.Blazor;
using Fusonic.Extensions.Email.Tests.Models;
using Xunit;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Fusonic GmbH. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for license information.

using Fusonic.Extensions.AspNetCore.Blazor;
using Fusonic.Extensions.Email.Tests.Components.Emails;

namespace Fusonic.Extensions.Email.Tests.Models;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Fusonic GmbH. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for license information.

using Fusonic.Extensions.AspNetCore.Blazor;
using Fusonic.Extensions.Email.Tests.Components.Emails;

namespace Fusonic.Extensions.Email.Tests.Models;
Expand Down
1 change: 1 addition & 0 deletions src/Email/test/Models/SendEmailTestEmailComponentModel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) Fusonic GmbH. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for license information.

using Fusonic.Extensions.AspNetCore.Blazor;
using Fusonic.Extensions.Email.Tests.Components.Emails;

namespace Fusonic.Extensions.Email.Tests.Models;
Expand Down

0 comments on commit 99a336e

Please sign in to comment.