mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-29 06:48:41 +00:00
17 lines
256 B
C#
17 lines
256 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Tests.Gvwie
|
|
{
|
|
public enum GeneratorPattern
|
|
{
|
|
Uniform,
|
|
Positive,
|
|
Negative,
|
|
Alternating,
|
|
Small,
|
|
Ascending,
|
|
}
|
|
}
|