9 lines
174 B
C#
9 lines
174 B
C#
|
|
using Netina.Common.Models;
|
|||
|
|
|
|||
|
|
namespace Netina.Core.BaseServices.Abstracts;
|
|||
|
|
|
|||
|
|
public interface ISiteMapService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
public Task CreateSiteMapAsync();
|
|||
|
|
}
|