Fixed website using new project
This commit is contained in:
parent
7bac6e3e16
commit
7aa40c171b
237 changed files with 934 additions and 89 deletions
18
LearningChineseFixed/Classes/CChar.cs
Normal file
18
LearningChineseFixed/Classes/CChar.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
namespace LearningChineseFixed
|
||||
{
|
||||
/// <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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue