/src/SampleLibrary/IInjectionTarget.cs
http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · ea180dc4c46243ee671b0dc56cca6af5 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SampleLibrary
- {
- public interface IInjectionTarget
- {
- void SetValue(object arg1);
- }
- }