Created
May 1, 2025 02:31
-
-
Save renatogroffe/e5eb44a14c60d2ff5b4623abc6e77741 to your computer and use it in GitHub Desktop.
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 characters
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