Notes/Notes.Data/IServices.cs

8 lines
125 B
C#
Raw Normal View History

namespace Notes.ViewModels;
public interface IServices
{
void Register<T>(T t);
T? Get<T>();
T GetSafeAs<T>();
}