All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m18s
12 lines
225 B
C#
12 lines
225 B
C#
namespace Domain.Entities
|
|
{
|
|
public class ETaxCondition
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
public string CmpClase { get; set; } = null!;
|
|
}
|
|
}
|