mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-23 00:41:36 +00:00
5 lines
128 B
C#
5 lines
128 B
C#
public interface IRepository {
|
|
string Find(int id);
|
|
string Find(string name, bool exact);
|
|
void Save(string data);
|
|
}
|