Backend/e-suite.Automation.UITests/ESuite.UI.E2E/Models/SequenceData.cs
2026-01-20 21:50:10 +00:00

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; }
}
}