Namespace fix (#335)
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
@using Oqtane.Modules.Weather.Services
|
||||
@using Oqtane.Modules.Weather.Models
|
||||
@namespace Oqtane.Modules.Weather
|
||||
@inherits ModuleBase
|
||||
|
||||
@ -39,4 +40,4 @@ else
|
||||
WeatherForecastService forecastservice = new WeatherForecastService();
|
||||
forecasts = await forecastservice.GetForecastAsync(DateTime.UtcNow);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Modules.Weather
|
||||
namespace Oqtane.Modules.Weather.Models
|
||||
{
|
||||
public class WeatherForecast
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Oqtane.Modules.Weather.Models;
|
||||
|
||||
namespace Oqtane.Modules.Weather.Services
|
||||
{
|
||||
|
@ -2,6 +2,7 @@ using Oqtane.Modules;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Oqtane.Modules.Weather.Models;
|
||||
|
||||
namespace Oqtane.Modules.Weather.Services
|
||||
{
|
||||
|
Reference in New Issue
Block a user