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; }
}