Files
lux/EgwCoreLib.Lux.Data/Repository/Items/IItemGroupRepository.cs
T
2026-03-18 18:52:59 +01:00

10 lines
200 B
C#

using EgwCoreLib.Lux.Data.DbModel.Items;
namespace EgwCoreLib.Lux.Data.Repository.Items
{
public interface IItemGroupRepository
{
Task<List<ItemGroupModel>> GetAllAsync();
}
}