10 lines
240 B
C#
10 lines
240 B
C#
namespace Marco.Pms.Model.Dtos.Collection
|
|
{
|
|
public class PaymentAdjustmentHeadDto
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|