2023-12-09 23:53:31 +01:00

13 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Manager.Interfaces.DTO
{
public class PdfDTO
{
//public string Title { get; set; } // Dictionary<string, object> with all languages
public string source { get; set; } // url to resource id (local) or on internet
}
}