15 lines
318 B
C#
15 lines
318 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Client.FileService.Request
|
|
{
|
|
public class FileFinalizeRequestV3
|
|
{
|
|
[JsonProperty(PropertyName = "fajlId")]
|
|
public Guid FajlId { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "utvonal")]
|
|
public string Utvonal { get; }
|
|
|
|
}
|
|
}
|