// Copyright (c) Microsoft. All rights reserved.
using ProcessWithCloudEvents.Processes.Steps;
namespace ProcessWithCloudEvents.Processes.Models;
///
/// Object used in the
///
public class ProductInfo
{
///
/// Title of the product
///
public string Title { get; set; } = string.Empty;
///
/// Content of the product
///
public string Content { get; set; } = string.Empty;
///
/// User comments
///
public string UserInput { get; set; } = string.Empty;
}