2024-04-17 12:24:47 +03:30
|
|
|
|
namespace Netina.WordPressDBConverter.Models;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
|
|
|
|
|
public class WordPressTermRelationDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string object_id { get; set; }
|
|
|
|
|
|
public string term_taxonomy_id { get; set; }
|
|
|
|
|
|
public string term_order { get; set; }
|
|
|
|
|
|
}
|