9 lines
167 B
C#
9 lines
167 B
C#
using Pilz.Data;
|
|
|
|
namespace Pilz.Net.Api.Client;
|
|
|
|
public interface IBaseItemClient<T> : IBaseClient<T> where T : IDataObject
|
|
{
|
|
Task<IEnumerable<T>> GetAll();
|
|
}
|