mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
8 lines
No EOL
148 B
C#
8 lines
No EOL
148 B
C#
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public interface IReadModels<T> where T : ModelBase
|
|
{
|
|
T All();
|
|
T Get(int id);
|
|
}
|
|
} |