Skip to content

Commit 32e4319

Browse files
committed
fix build
1 parent d508a2c commit 32e4319

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

CartPage.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
44
xmlns:empowerPlant="clr-namespace:EmpowerPlant"
5-
xmlns:models="clr-namespace:Empower.Models"
5+
xmlns:models="clr-namespace:EmpowerPlant.Models"
66
x:DataType="empowerPlant:CartViewModel"
77
x:Class="EmpowerPlant.CartPage"
88
Title="Cart">

CartViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using EmpowerPlant.Services;
2-
using Empower.Models;
2+
using EmpowerPlant.Models;
33

44
namespace EmpowerPlant;
55

Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DotNetMaui;
1+
namespace EmpowerPlant;
22

33
public static class Configuration
44
{

ListPage.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
44
xmlns:empowerPlant="clr-namespace:EmpowerPlant"
5-
xmlns:models="clr-namespace:Empower.Models"
5+
xmlns:models="clr-namespace:EmpowerPlant.Models"
66
x:DataType="empowerPlant:ListViewModel"
77
x:Class="EmpowerPlant.ListPage"
88
NavigationPage.BackButtonTitle="Back"

ListViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using EmpowerPlant.Services;
2-
using Empower.Models;
2+
using EmpowerPlant.Models;
33

44
namespace EmpowerPlant;
55

OrderViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using EmpowerPlant.Services;
2-
using Empower.Models;
2+
using EmpowerPlant.Models;
33
using Microsoft.Extensions.Logging;
44

55
namespace EmpowerPlant;

ProductView.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Windows.Input;
2-
using Empower.Models;
2+
using EmpowerPlant.Models;
33

44
namespace EmpowerPlant;
55

Services/DataService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Net.Http.Json;
2-
using Empower.Models;
2+
using EmpowerPlant.Models;
33
using Microsoft.Extensions.Logging;
44

55
namespace EmpowerPlant.Services;

Services/Product.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Empower.Models;
1+
namespace EmpowerPlant.Models;
22

33
public class Product
44
{

0 commit comments

Comments
 (0)