Api/Tools/NetinaShop.WordPressDBConve.../Models/WordPressTermDto.cs

9 lines
244 B
C#

namespace NetinaShop.WordPressDBConverter.Models;
public class WordPressTermDto
{
public string term_id { get; set; }
public string name { get; set; }
public string slug { get; set; }
public string term_group { get; set; }
}