All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 1m40s
24 lines
531 B
C#
24 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Domain.Entities
|
|
{
|
|
public class EAccountType
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public decimal? CreditLimit { get; set; }
|
|
|
|
public DateTime? CreationDate { get; set; }
|
|
|
|
//public virtual ICollection<ECustomer> Customers { get; set; } = new List<ECustomer>();
|
|
}
|
|
}
|