using System; namespace AriasServerUtils { public enum ModConfigType { Global, World } [Serializable] public class ASUModConfig { public int MaxHomes { get; set; } = 20; public PlayerPosition Spawn { get; set; } } }