8 lines
229 B
C#
8 lines
229 B
C#
|
|
namespace NetinaShop.WordPressDBConverter.Models;
|
|||
|
|
|
|||
|
|
public class WordPressTermRelationDto
|
|||
|
|
{
|
|||
|
|
public string object_id { get; set; }
|
|||
|
|
public string term_taxonomy_id { get; set; }
|
|||
|
|
public string term_order { get; set; }
|
|||
|
|
}
|