-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
public struct FoodRecallNotice | ||
public readonly struct FoodRecallNotice | ||
{ | ||
public string? BrandName { get; set; } | ||
public string? BrandName { get; init; } | ||
Check failure on line 6 in docs/logs/complex-objects/FoodRecallNotice.cs
|
||
|
||
public string? ProductDescription { get; set; } | ||
public string? ProductDescription { get; init; } | ||
Check failure on line 8 in docs/logs/complex-objects/FoodRecallNotice.cs
|
||
|
||
public string? ProductType { get; set; } | ||
public string? ProductType { get; init; } | ||
Check failure on line 10 in docs/logs/complex-objects/FoodRecallNotice.cs
|
||
|
||
public string? RecallReasonDescription { get; set; } | ||
public string? RecallReasonDescription { get; init; } | ||
Check failure on line 12 in docs/logs/complex-objects/FoodRecallNotice.cs
|
||
|
||
public string? CompanyName { get; set; } | ||
public string? CompanyName { get; init; } | ||
Check failure on line 14 in docs/logs/complex-objects/FoodRecallNotice.cs
|
||
} |