Precompiled Azure Functions Revisited
public class Product | |
{ | |
public Guid ProductId { get; set; } | |
public string Name { get; set; } | |
public string Description { get; set; } | |
public decimal UnitPrice { get; set; } | |
public DateTimeOffset DateCreated { get; set; } | |
public DateTimeOffset DateUpdated { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment