All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m16s
12 lines
312 B
C#
12 lines
312 B
C#
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; }
|
|
}
|
|
}
|