9 lines
202 B
C#
9 lines
202 B
C#
namespace Marco.Pms.Model.Dtos.Collection
|
|
{
|
|
public class InvoiceCommentDto
|
|
{
|
|
public required string Comment { get; set; }
|
|
public required Guid InvoiceId { get; set; }
|
|
}
|
|
}
|