11 lines
342 B
C#
11 lines
342 B
C#
namespace Netina.WordPressDBConverter.Models;
|
|
|
|
public class WordPressTermTaxonomyDto
|
|
{
|
|
public string term_taxonomy_id { get; set; }
|
|
public string term_id { get; set; }
|
|
public string taxonomy { get; set; }
|
|
public string description { get; set; }
|
|
public string parent { get; set; }
|
|
public string count { get; set; }
|
|
} |