База для нового бэкэнда

This commit is contained in:
2025-03-06 14:10:52 +03:00
parent be6dedaee4
commit c802f337c7
18 changed files with 245 additions and 163 deletions
+24
View File
@@ -0,0 +1,24 @@
using System.Collections.Generic;
using Example.Shared;
namespace Example.Backend
{
public class PagesList : IPagesList
{
public IReadOnlyList<IPage> Collection { get; }
public IPage Get(int index)
{
throw new System.NotImplementedException();
}
public void Add(IPage item)
{
throw new System.NotImplementedException();
}
public void Set(int index, IPage item)
{
throw new System.NotImplementedException();
}
}
}