2024-04-17 12:24:47 +03:30
|
|
|
|
namespace Netina.WordPressDBConverter.Models;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|