19 lines
337 B
C#
19 lines
337 B
C#
namespace XED.Manage
|
|
{
|
|
public class ObjectHandler
|
|
{
|
|
public enum HandlingType
|
|
{
|
|
Normal,
|
|
Property,
|
|
}
|
|
|
|
public HandlingType handlingType = HandlingType.Normal;
|
|
|
|
public void SetHandlingType(HandlingType type)
|
|
{
|
|
handlingType = type;
|
|
|
|
}
|
|
}
|
|
} |