mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 14:38:43 +00:00
21 lines
332 B
C#
21 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Tests.Gvwie
|
|
{
|
|
public enum GeneratorPattern
|
|
{
|
|
Uniform,
|
|
Positive,
|
|
Negative,
|
|
Alternating,
|
|
Small,
|
|
Medium,
|
|
Large,
|
|
Ascending,
|
|
Clustering,
|
|
MixedClustering,
|
|
}
|
|
}
|