14 lines
331 B
C#
14 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace RIZO_Application.Models.Model
|
|
{
|
|
public class PrintDto
|
|
{
|
|
public string Path { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
}
|
|
}
|