Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang committed Apr 26, 2024
1 parent 8339c95 commit e0dd65e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/logs/complex-objects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ Define a new complex data type, as shown in [FoodRecallNotice.cs](./FoodRecallNo
```csharp
public 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; }
public string? BrandName { get; init; }
public string? ProductDescription { get; init; }
public string? ProductType { get; init; }
public string? RecallReasonDescription { get; init; }
public string? CompanyName { get; init; }
}
```

Expand Down

0 comments on commit e0dd65e

Please sign in to comment.