17 lines
341 B
C#
17 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MudDesigner.MudEngine.Objects.Environment
|
|
{
|
|
public class Zone : BaseObject
|
|
{
|
|
[System.ComponentModel.Browsable(false)]
|
|
public string Realm
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|