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