Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Dto/DotMatrix/DotMatrixNotebookReportInput.cs

20 lines
411 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QYZH.InteractiveMagazine.Models.Dto.DotMatrix
{
public class DotMatrixNoteJournalReportInput
{
public long Id { get; set; }
public bool Success { get; set; }
public string FileKey { get; set; }
public string FileUrl { get; set; }
}
}