mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 22:30:27 +00:00
17 lines
324 B
C#
17 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler {
|
|
public class ImportMember {
|
|
public readonly string Data;
|
|
public ImportMember(string aData) {
|
|
Data = aData;
|
|
}
|
|
|
|
public override string ToString() {
|
|
return Data;
|
|
}
|
|
}
|
|
}
|