Files
mROA/mROA/Implementation/CallIndexConfig.cs
T
2025-06-30 00:09:30 +03:00

16 lines
340 B
C#

using System.Collections.Generic;
namespace mROA.Implementation
{
public class CallIndexConfig : List<IndexSpan>
{
}
public class IndexSpan
{
public string Identifier { get; set; }
public int ApiLevel { get; set; }
public int Offset { get; set; }
public int Length { get; set; }
}
}