Created
January 22, 2018 07:15
-
-
Save amarwadi/97016f60253353c13d94ad675df74213 to your computer and use it in GitHub Desktop.
Installment Model - Initial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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