mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +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);
|
|
}
|
|
} |