// Copyright (c) Microsoft. All rights reserved.
namespace ProcessWithCloudEvents.Processes.Models;
///
/// Object used to store generated document data
/// Since this object is used as parameter and state type by multiple steps,
/// Its members must be public and serializable
///
//[DataContract]
public class DocumentInfo
{
///
/// Id of the document
///
public string Id { get; set; } = string.Empty;
///
/// Title of the document
///
public string Title { get; set; } = string.Empty;
///
/// Content of the document
///
public string Content { get; set; } = string.Empty;
}