using System.Collections.Generic;
public static void Main()
""folderPath"": ""D:\\bfi"",
""Alignment"": ""Center"",
""FontFamily"": ""Arial"",
var root = JsonConvert.DeserializeObject<RootObject>(json);
var json2 = JsonConvert.SerializeObject(root, Formatting.Indented);
Console.WriteLine(json2);
public string FolderPath { get; set; }
public string FolderName { get; set; }
public Template Template { get; set; }
public int Width { get; set; } = 700;
public int Height { get; set; } = 700;
public Picture Picture { get; set; }
public List<Shape> Shape { get; set; }
public List<Word> Word { get; set; }
public int X { get; set; }
public int Y { get; set; }
public List<PointF> Point { get; set; }
public string Color { get; set; }
public string Text { get; set; }
public int Width { get; set; }
public HorizontalAlignment Alignment { get; set; } = HorizontalAlignment.Center;
public string Color { get; set; }
public string FontFamily { get; set; }
public int Size { get; set; }
public FontStyle Style { get; set; } = FontStyle.Regular;
public enum HorizontalAlignment { Left, Right, Center }
public enum FontStyle { Regular, Italic, Bold }