)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » AccessNetworkViewModel (Ia.Ftn.Wa.Models.Administration)

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

    1: using Microsoft.AspNetCore.Identity;
    2: using Microsoft.AspNetCore.Mvc.Rendering;
    3:  
    4: namespace Ia.Ftn.Wa.Models.Administration
    5: {
    6:     ////////////////////////////////////////////////////////////////////////////
    7:  
    8:     /// <summary publish="true">
    9:     ///
   10:     /// </summary>
   11:     /// 
   12:     /// <remarks> 
   13:     /// Copyright � 2006-2025 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   14:     /// </remarks> 
   15:     public class AccessNetworkViewModel
   16:     {
   17:         /// <summary/>
   18:         public SelectList SiteSelectList { get; set; }
   19:  
   20:         /// <summary/>
   21:         public string SiteSelectedValue { get; set; }
   22:  
   23:         /// <summary/>
   24:         public SelectList OdfSelectList { get; set; }
   25:  
   26:         /// <summary/>
   27:         public string OdfSelectedValue { get; set; }
   28:  
   29:         /// <summary/>
   30:         public SelectList OltSelectList { get; set; }
   31:  
   32:         /// <summary/>
   33:         public string OltSelectedValue { get; set; }
   34:  
   35:         /// <summary/>
   36:         public SelectList PonSelectList { get; set; }
   37:  
   38:         /// <summary/>
   39:         public string PonSelectedValue { get; set; }
   40:  
   41:         /// <summary/>
   42:         public string OntText { get; set; }
   43:  
   44:         /// <summary/>
   45:         public string Result { get; set; }
   46:     }
   47:  
   48:     ////////////////////////////////////////////////////////////////////////////
   49:     ////////////////////////////////////////////////////////////////////////////
   50: }