28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
namespace Netina.WordPressDBConverter.Models;
|
|
|
|
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; }
|
|
} |