13 lines
235 B
C#
13 lines
235 B
C#
namespace mROA.Implementation
|
|
{
|
|
public class DistributionOptions
|
|
{
|
|
public EDistributionType DistributionType { get; set; }
|
|
}
|
|
|
|
public enum EDistributionType
|
|
{
|
|
Channeled,
|
|
ExtractorFirst
|
|
}
|
|
} |