8 lines
184 B
C#
8 lines
184 B
C#
using adas_core.Domain.Models.MongoModels;
|
|
|
|
namespace adas_core.Application.Services.Interfaces;
|
|
|
|
public interface IServiceConfigService
|
|
{
|
|
Task<ServiceConfig?> Get(string id);
|
|
} |