2024-01-09 17:32:46 -05:00
|
|
|
|
namespace SDBD;
|
|
|
|
|
|
|
|
|
|
public class Codec : ICodec {
|
|
|
|
|
public Document Decode(byte[] data) {
|
2024-01-09 17:55:29 -05:00
|
|
|
|
return new(
|
|
|
|
|
new () {
|
|
|
|
|
{ "content-name", "text.txt" }
|
|
|
|
|
},
|
|
|
|
|
data
|
|
|
|
|
);
|
2024-01-09 17:32:46 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public byte[] Encode(Document document) {
|
2024-01-09 17:55:29 -05:00
|
|
|
|
return document.Data;
|
2024-01-09 17:32:46 -05:00
|
|
|
|
}
|
|
|
|
|
}
|