You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
374 B
17 lines
374 B
using ReZero.DependencyInjection; |
|
using System.Runtime.InteropServices; |
|
|
|
namespace DependencyInjectionTest.Controllers |
|
{ |
|
public class Class1:IClass1, IScopeContract |
|
{ |
|
public string? a { get; set; } = "a"; |
|
} |
|
public class Class2 : IScopeContract |
|
{ |
|
public string? a2 { get; set; } = "a2"; |
|
} |
|
public interface IClass1 |
|
{ |
|
} |
|
}
|
|
|