13 lines
317 B
C#
13 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class PdfDTO
|
|
{
|
|
public string resourceId { get; set; } // url to resource id
|
|
public string resourceUrl { get; set; } // url to resource firebase or on internet => JSON file
|
|
}
|
|
}
|