Files
Il2CppInspectorRedux/Il2CppTests/TestSources/Properties.cs
2019-11-06 00:33:47 +01:00

17 lines
389 B
C#

/*
Copyright 2017-2019 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
All rights reserved.
*/
namespace Il2CppTests.TestSources
{
internal class Test
{
private int prop1 { get; set; }
protected int prop2 { get; private set; }
protected int prop3 { private get; set; }
public static int prop4 { private get; set; }
}
}