9 lines
211 B
C#
9 lines
211 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr
|
|||
|
|
{
|
|||
|
|
public class DolibarrPdfResponse
|
|||
|
|
{
|
|||
|
|
public string filename { get; set; } = default!;
|
|||
|
|
public string content { get; set; } = default!;
|
|||
|
|
}
|
|||
|
|
}
|