Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created May 1, 2025 02:31
Show Gist options
  • Save renatogroffe/e5eb44a14c60d2ff5b4623abc6e77741 to your computer and use it in GitHub Desktop.
Save renatogroffe/e5eb44a14c60d2ff5b4623abc6e77741 to your computer and use it in GitHub Desktop.

Revisions

  1. renatogroffe created this gist May 1, 2025.
    8 changes: 8 additions & 0 deletions Produto.cs
    Original 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; }
    }