2023-07-07 19:41:56 +02:00
|
|
|
|
namespace CCharLearn
|
2023-06-27 11:48:18 +02:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// CChar stands for ChineseCharecter. Contains extra infomation about the charecter
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CChar
|
|
|
|
|
{
|
|
|
|
|
public int? frequency_rank { get; set; }
|
|
|
|
|
public char? charcter { get; set; }
|
|
|
|
|
public string? pinyin { get; set; }
|
|
|
|
|
public string? definition { get; set; }
|
|
|
|
|
public char? radical { get; set; }
|
|
|
|
|
public float? radical_code { get; set; }
|
|
|
|
|
public int? stroke_count { get; set; }
|
|
|
|
|
public int? hsk_levl { get; set; }
|
|
|
|
|
public int? general_standard_num { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|