Created
May 1, 2025 02:31
-
-
Save renatogroffe/e5eb44a14c60d2ff5b4623abc6e77741 to your computer and use it in GitHub Desktop.
Revisions
-
renatogroffe created this gist
May 1, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ namespace ConsoleAppNullConditionalAssignment.Models; public class Produto { public string? Id { get; set; } public string? Nome { get; set; } public double? Preco { get; set; } }