34 lines
606 B
C#
34 lines
606 B
C#
using System;
|
|
|
|
namespace Zenject
|
|
{
|
|
[NoReflectionBaking]
|
|
public class ValidationMarker
|
|
{
|
|
public ValidationMarker(
|
|
Type markedType, bool instantiateFailed)
|
|
{
|
|
MarkedType = markedType;
|
|
InstantiateFailed = instantiateFailed;
|
|
}
|
|
|
|
public ValidationMarker(Type markedType)
|
|
: this(markedType, false)
|
|
{
|
|
}
|
|
|
|
public bool InstantiateFailed
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public Type MarkedType
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
}
|
|
|