1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 23:27:26 +00:00
Radarr/NzbDrone.Core/Datastore/IReadModels.cs

8 lines
148 B
C#
Raw Normal View History

2013-04-22 17:44:47 -07:00
namespace NzbDrone.Core.Datastore
{
public interface IReadModels<T> where T : ModelBase
{
T All();
T Get(int id);
}
}