mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-23 23:59:03 +01:00
36 lines
599 B
C#
36 lines
599 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ChanSort.Api;
|
|
//using System.Text.Json;
|
|
|
|
namespace ChanSort.Loader.GlobalClone
|
|
{
|
|
internal class GcJsonSerializer : SerializerBase
|
|
{
|
|
private string content;
|
|
|
|
public GcJsonSerializer(string filename, string jsonContent) : base(filename)
|
|
{
|
|
this.content = jsonContent;
|
|
}
|
|
|
|
|
|
public override void Load()
|
|
{
|
|
//var doc = new JsonDocument();
|
|
}
|
|
|
|
|
|
|
|
public override void Save(string tvOutputFile)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|