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

9 lines
255 B
C#

namespace NetinaShop.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; }
}