10 lines
191 B
C#
10 lines
191 B
C#
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Unity.Services.Core.Configuration
|
||
|
{
|
||
|
interface IConfigurationLoader
|
||
|
{
|
||
|
Task<SerializableProjectConfiguration> GetConfigAsync();
|
||
|
}
|
||
|
}
|