Наследование: IUserConfiguration
 public HostRuntimeConfiguration()
 {
     Server = new List<ServiceTypeConfiguration>();
     SuperUser = new UserElement();
     Audit = new AuditElement();
     LogInfo = new LogElement();
 }
 public ClientRuntimeConfiguration()
 {
     User = new UserElement();
     Client = new ClientServiceTypeConfiguration();
     LogInfo = new LogElement
     {
         ProviderType = typeof (Logger).AssemblyQualifiedName
     };
 }