10 lines
197 B
C#
10 lines
197 B
C#
|
using System.Runtime.Serialization;
|
||
|
|
||
|
public abstract class BaseInstruction
|
||
|
{
|
||
|
[DataMember(IsRequired = true)]
|
||
|
public string? type { get; set; }
|
||
|
|
||
|
public abstract List<byte[]> GetInstructions();
|
||
|
}
|