Skip to content

Instantly share code, notes, and snippets.

@amarwadi
Created January 22, 2018 07:15
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 amarwadi/97016f60253353c13d94ad675df74213 to your computer and use it in GitHub Desktop.
Save amarwadi/97016f60253353c13d94ad675df74213 to your computer and use it in GitHub Desktop.
Installment Model - Initial
public class Installment
{
public string Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public uint InstallmentFrequencyInDays { get; set; }
public decimal DownPayment { get; set; }
public uint TotalInstallments { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment