)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Skip Navigation Links

Public general use code classes and xml files that we've compiled and used over the years:

Kanji business support class

    1:  
    2: namespace Ia.Learning.Cl.Model.Business
    3: {
    4:     ////////////////////////////////////////////////////////////////////////////
    5:  
    6:     /// <summary publish="true">
    7:     /// Kanji business support class
    8:     /// </summary>
    9:     /// <value>
   10:     /// https://msdn.microsoft.com/en-us/library/z1hkazw7(v=vs.100).aspx
   11:     /// </value>
   12:     /// <remarks> 
   13:     /// Copyright © 2008-2016 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   14:     ///
   15:     /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
   16:     /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
   17:     ///
   18:     /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
   19:     /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
   20:     /// 
   21:     /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
   22:     /// 
   23:     /// Copyright notice: This notice may not be removed or altered from any source distribution.
   24:     /// </remarks> 
   25:     public partial class Kanji
   26:     {
   27:         // <char id="1" wiki_id="1" name="一" grade="1" wiki_en="one" en="one" stroke="1" onyomi_ja="イチ、イツ" onyomi_en="ichi, itsu" kunyomi_ja="ひと、ひと-つ" kunyomi_en="hito, hito-tsu" />
   28:  
   29:         /// <summary/>
   30:         public int Id { get; set; }
   31:  
   32:         /// <summary/>
   33:         public int WikiId { get; set; }
   34:  
   35:         /// <summary/>
   36:         public string Name { get; set; }
   37:  
   38:         /// <summary/>
   39:         public int Grade { get; set; }
   40:  
   41:         /// <summary/>
   42:         public string WikiEnglish { get; set; }
   43:  
   44:         /// <summary/>
   45:         public string English { get; set; }
   46:  
   47:         /// <summary/>
   48:         public int Stroke { get; set; }
   49:  
   50:         /// <summary/>
   51:         public string JapaneseOnyomi { get; set; }
   52:  
   53:         /// <summary/>
   54:         public string EnglishOnyomi { get; set; }
   55:  
   56:         /// <summary/>
   57:         public string JapaneseKunyomi { get; set; }
   58:  
   59:         /// <summary/>
   60:         public string EnglishKunyomi { get; set; }
   61:     }
   62:  
   63:     ////////////////////////////////////////////////////////////////////////////
   64:     ////////////////////////////////////////////////////////////////////////////
   65: }