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