mirror of
https://github.com/opensim/opensim.git
synced 2026-06-07 20:15:43 +08:00
16 lines
367 B
C#
16 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework.Interfaces
|
|
{
|
|
public interface IGenericConfig
|
|
{
|
|
void LoadData();
|
|
string GetAttribute(string attributeName);
|
|
bool SetAttribute(string attributeName, string attributeValue);
|
|
void Commit();
|
|
void Close();
|
|
}
|
|
}
|