Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 2, 2022 16:28
Embed
What would you like to do?
DynamoDb Domain Vehicle
namespace Domain;
public class Vehicle
{
public string Vin { get; set; }
public string? Year { get; set; }
public string? Make { get; set; }
public string? Model { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment