Api/Tools/NetinaShop.WordPressDBConve.../Models/WordPressPostMetaDto.cs

9 lines
251 B
C#

namespace Netina.WordPressDBConverter.Models;
public class WordPressPostMetaDto
{
public string meta_id { get; set; }
public string post_id { get; set; }
public string meta_key { get; set; }
public string meta_value { get; set; }
}