Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 2, 2022 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/a0f83c66e0a977d90638518a0cb98c2e to your computer and use it in GitHub Desktop.
Save awswithdotnet/a0f83c66e0a977d90638518a0cb98c2e to your computer and use it in GitHub Desktop.
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