10 lines
238 B
C#
10 lines
238 B
C#
using VisionBuilder.UI.Common.Commands.Interfaces;
|
|
|
|
namespace VisionBuilder.UI.Common.Commands;
|
|
|
|
public class SessionStartedEvent : IEvent
|
|
{
|
|
public string RecipeName { get; set; }
|
|
public DateTime SessionStarted { get; set; }
|
|
|
|
} |