CostCalculationItem/IRaCIS.Core.Domain/Image/IRepository/IImageLabelRepository.cs

12 lines
229 B
C#

using IRaCIS.Core.Domain.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace IRaCIS.Core.Domain.Interfaces
{
public interface IImageLabelRepository : IRepository<ImageLabel>
{
}
}