10 lines
169 B
C#
10 lines
169 B
C#
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Business.Interface
|
|
{
|
|
public interface IInitDbService
|
|
{
|
|
public void GenerateDb();
|
|
}
|
|
}
|