11 lines
315 B
C#
11 lines
315 B
C#
namespace ESuite.UI.E2E.Models
|
|
{
|
|
public class SequenceData
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Seed { get; set; }
|
|
public string? Increment { get; set; }
|
|
public string? Pattern { get; set; }
|
|
public string? RolloverType { get; set; }
|
|
}
|
|
} |