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