20 lines
458 B
C#
20 lines
458 B
C#
// Copyright (c) 2012-2019 Wojciech Figat. All rights reserved.
|
|
|
|
namespace Flax.Build.Bindings
|
|
{
|
|
/// <summary>
|
|
/// The native property information for bindings generator.
|
|
/// </summary>
|
|
public class PropertyInfo : MemberInfo
|
|
{
|
|
public TypeInfo Type;
|
|
public FunctionInfo Getter;
|
|
public FunctionInfo Setter;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Type + " " + Name;
|
|
}
|
|
}
|
|
}
|