9 lines
201 B
C#
9 lines
201 B
C#
using SPMS.Domain.Entities;
|
|
|
|
namespace SPMS.Domain.Interfaces;
|
|
|
|
public interface IAppConfigRepository : IRepository<AppConfig>
|
|
{
|
|
Task<AppConfig?> GetByKeyAsync(long serviceId, string configKey);
|
|
}
|