1
This commit is contained in:
19
Packages/Core/Utility/Provider.cs
Normal file
19
Packages/Core/Utility/Provider.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public interface IProvider
|
||||
{
|
||||
void Get<T>() { }
|
||||
void Set<T>(T t) { }
|
||||
}
|
||||
public interface IProvider<T> : IProvider
|
||||
{
|
||||
T Get();
|
||||
void Set(T t);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user