elsa-core/test/shared/Elsa.Testing.Shared/Helpers/AssertableActivityState.cs

9 lines
189 B
C#
Raw Normal View History

2021-08-01 01:35:10 +00:00
using System.Collections.Generic;
namespace Elsa.Testing.Shared.Helpers
{
public class AssertableActivityState
{
public List<string> Messages { get; set; } = new();
}
}