2025-11-05 00:22:21 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace DouyinApi.Model.Naming
|
|
|
|
|
{
|
|
|
|
|
public class NamingResponse
|
|
|
|
|
{
|
2025-11-05 17:26:45 +08:00
|
|
|
public NamingAnalysis Analysis { get; set; } = new NamingAnalysis();
|
|
|
|
|
|
2025-11-05 00:22:21 +08:00
|
|
|
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;
|
2025-11-05 17:26:45 +08:00
|
|
|
|
|
|
|
|
public string ElementReason { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
public class NamingAnalysis
|
|
|
|
|
{
|
|
|
|
|
public string MatchSummary { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public IReadOnlyList<string> Pillars { get; set; } = new List<string>();
|
|
|
|
|
|
|
|
|
|
public IReadOnlyList<FiveElementScore> ElementDistribution { get; set; } = new List<FiveElementScore>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class FiveElementScore
|
|
|
|
|
{
|
|
|
|
|
public string Element { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int Count { get; set; }
|
2025-11-05 00:22:21 +08:00
|
|
|
}
|
|
|
|
|
}
|