phronCare/Documents/Models/DocumentGenerationRequest.cs
Leandro Hernan Rojas b6c63b874c
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m29s
Testing Razor PDF Generator
2025-05-15 19:24:12 -03:00

9 lines
186 B
C#

namespace Documents.Models
{
public class DocumentGenerationRequest
{
public DocumentType DocumentType { get; set; }
public object Model { get; set; }
}
}