All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m18s
Quote Demo v1
16 lines
281 B
C#
16 lines
281 B
C#
namespace Domain.Entities
|
|
{
|
|
public class EAdjustmentReason
|
|
{
|
|
public string Code { get; set; } = null!;
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public DateTime Createdat { get; set; }
|
|
|
|
}
|
|
|
|
}
|