18 lines
466 B
C#
18 lines
466 B
C#
using System.Collections.Generic;
|
|
using Kreta.Client.FileService.Model;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Client.FileService.Response
|
|
{
|
|
internal class InternalFileFinalizeResponse
|
|
{
|
|
[JsonProperty("fajlok")]
|
|
public List<FileDataWithError> Fajlok { get; set; }
|
|
|
|
[JsonProperty("hibaSzoveg")]
|
|
public string HibaSzoveg { get; set; }
|
|
|
|
[JsonProperty("isSikeres")]
|
|
public bool IsSikeres { get; set; }
|
|
}
|
|
}
|