I'm going to need the Version property to manage

migrating from the old to the new system.  Silly legacy
code.
0.6.0-stable
Sean Dague 2008-06-10 23:17:18 +00:00
parent 68cda63761
commit be400d1bd0
1 changed files with 6 additions and 0 deletions

View File

@ -156,6 +156,12 @@ namespace OpenSim.Data
return max;
}
public int Version
{
get { return FindVersion(_type); }
set { UpdateVersion(_type, value); }
}
private int FindVersion(string type)
{
int version = 0;