//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; namespace Neo.Afx.Services { public partial class ServiceSetting { public int ServiceSettingID { get; set; } public int ServiceID { get; set; } public string SettingKey { get; set; } public string SettingValue { get; set; } public virtual Service Service { get; set; } } }