Skip to content

Instantly share code, notes, and snippets.

@AbhiOnGithub
Created July 28, 2018 17:48
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 AbhiOnGithub/990e6d98fcff69d6b5d2fe7a67ac0905 to your computer and use it in GitHub Desktop.
Save AbhiOnGithub/990e6d98fcff69d6b5d2fe7a67ac0905 to your computer and use it in GitHub Desktop.
public class TaxiTrip
{
[Column("0")]
public string VendorId;
[Column("1")]
public string RateCode;
[Column("2")]
public float PassengerCount;
[Column("3")]
public float TripTime;
[Column("4")]
public float TripDistance;
[Column("5")]
public string PaymentType;
[Column("6")]
public float FareAmount;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment