00001 using System; 00002 00003 namespace Server { 00007 public class ServerSettings { 00008 00009 public ServerSettings() { 00010 } 00011 00012 public int ServerCacheSize { 00013 get { 00014 return 32 * 1024 * 1024; // == 32 Mb cache 00015 } 00016 } 00017 00018 } 00019 00020 }