9 lines
255 B
C#
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; }
|
|||
|
|
}
|