17 lines
380 B
C#
17 lines
380 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace DouyinApi.Model.Naming
|
||
|
|
{
|
||
|
|
public class NamingResponse
|
||
|
|
{
|
||
|
|
public IEnumerable<NamingSuggestion> Results { get; set; } = new List<NamingSuggestion>();
|
||
|
|
}
|
||
|
|
|
||
|
|
public class NamingSuggestion
|
||
|
|
{
|
||
|
|
public string Name { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
public string Meaning { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|