11 lines
241 B
C#
11 lines
241 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FishNotify;
|
|
|
|
public class OpcodeRegion
|
|
{
|
|
public string? Version { get; set; }
|
|
public string? Region { get; set; }
|
|
public Dictionary<string, List<OpcodeList>>? Lists { get; set; }
|
|
}
|