10 lines
204 B
C#
10 lines
204 B
C#
using EgwCoreLib.Lux.Data.DbModel.Config;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Config
|
|
{
|
|
public interface IEnvirParamRepository
|
|
{
|
|
Task<List<EnvirParamModel>> GetAllAsync();
|
|
}
|
|
}
|