FruitBankHybridApp/FruitBank.Common/Entities/CustomerCredit.cs

14 lines
432 B
C#

using AyCode.Interfaces.EntityComment;
using FruitBank.Common.Interfaces;
using Mango.Nop.Core.Entities;
namespace FruitBank.Common.Entities;
public class CustomerCredit: MgEntityBase, IEntityComment
{
public int CustomerId { get; set; }
public decimal CreditLimit { get; set; }
public string? Comment { get; set; }
public DateTime CreatedOnUtc { get; set; }
public DateTime UpdatedOnUtc { get; set; }
}