props/Props/Services/Content/IContentManager.cs
Harrison Deng b43d7bab84 Ported progress from SPA and began scaffolding Identity UI.
Laid some groundwork in backend.

Began customizing Identity UI.
2021-07-24 00:03:32 -05:00

7 lines
127 B
C#

namespace Props.Services.Content
{
public interface IContentManager<out TModel>
{
dynamic Json { get; }
}
}