14 lines
536 B
C#
14 lines
536 B
C#
namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models;
|
|
|
|
public class CustomerCreditListRow
|
|
{
|
|
public int CustomerId { get; set; }
|
|
public string CustomerEmail { get; set; } = string.Empty;
|
|
public string CustomerName { get; set; } = string.Empty;
|
|
public bool HasCreditLimit { get; set; }
|
|
public decimal CreditLimit { get; set; }
|
|
public decimal OutstandingBalance { get; set; }
|
|
public decimal? RemainingCredit { get; set; }
|
|
public string? Comment { get; set; }
|
|
}
|