20 строки
495 B
C#
20 строки
495 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.Azure.Functions.Tests
|
|
{
|
|
/// <summary>
|
|
/// Used to validate types defined in external assemblies
|
|
/// </summary>
|
|
public class ExternalPoco
|
|
{
|
|
public string Prop1 { get; set; }
|
|
|
|
public string Prop2 { get; set; }
|
|
}
|
|
}
|