18 lines
389 B
C#
18 lines
389 B
C#
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace ComplexObjects;
|
|
|
|
internal struct FoodRecallNotice
|
|
{
|
|
public string? BrandName { get; set; }
|
|
|
|
public string? ProductDescription { get; set; }
|
|
|
|
public string? ProductType { get; set; }
|
|
|
|
public string? RecallReasonDescription { get; set; }
|
|
|
|
public string? CompanyName { get; set; }
|
|
}
|