Files
Keys/Repository/IRepository.cs
2025-09-22 13:08:08 +02:00

10 lines
172 B
C#

using System.Collections;
namespace Repository;
public interface IRepository
{
IEnumerable ReadAll();
void WriteAll(IEnumerable items);
object Get(uint id);
}