mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2024-11-24 07:00:11 +01:00
16 lines
385 B
C#
16 lines
385 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
|
|
namespace CsbBuilder.BuilderNode
|
|
{
|
|
public class BuilderVoiceLimitGroupNode : BuilderBaseNode
|
|
{
|
|
[Category("General"), DisplayName("Max Amount of Instances")]
|
|
public uint MaxAmountOfInstances { get; set; }
|
|
}
|
|
}
|