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

9 lines
240 B
C#

namespace Netina.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; }
}