2024-04-17 12:24:47 +03:30
|
|
|
|
namespace Netina.WordPressDBConverter.Models;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
|
|
|
|
|
public class WordPressPostDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ID { get; set; }
|
|
|
|
|
|
public string post_author { get; set; }
|
|
|
|
|
|
public string post_date { get; set; }
|
|
|
|
|
|
public string post_date_gmt { get; set; }
|
|
|
|
|
|
public string post_content { get; set; }
|
|
|
|
|
|
public string post_title { get; set; }
|
|
|
|
|
|
public string post_excerpt { get; set; }
|
|
|
|
|
|
public string post_status { get; set; }
|
|
|
|
|
|
public string comment_status { get; set; }
|
|
|
|
|
|
public string ping_status { get; set; }
|
|
|
|
|
|
public string post_password { get; set; }
|
|
|
|
|
|
public string post_name { get; set; }
|
|
|
|
|
|
public string to_ping { get; set; }
|
|
|
|
|
|
public string pinged { get; set; }
|
|
|
|
|
|
public string post_modified { get; set; }
|
|
|
|
|
|
public string post_modified_gmt { get; set; }
|
|
|
|
|
|
public string post_content_filtered { get; set; }
|
|
|
|
|
|
public string post_parent { get; set; }
|
|
|
|
|
|
public string guid { get; set; }
|
|
|
|
|
|
public string menu_order { get; set; }
|
|
|
|
|
|
public string post_type { get; set; }
|
|
|
|
|
|
public string post_mime_type { get; set; }
|
|
|
|
|
|
public string comment_count { get; set; }
|
|
|
|
|
|
}
|