phronCare/Domain/Entities/EAdjustmentReason.cs

16 lines
281 B
C#
Raw Normal View History

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