// Copyright (c) Microsoft. All rights reserved.
namespace StepwisePlannerMigration.Models;
///
/// Request model for planning endpoints.
///
public class PlanRequest
{
///
/// A goal which should be achieved after plan execution.
///
public string Goal { get; set; }
}