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!;
|
|||
|
|
}
|
|||
|
|
}
|