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.
namespace ConsoleAppNullConditionalAssignment.Models;
public class Produto
{
public string? Id { get; set; }
public string? Nome { get; set; }
public double? Preco { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment