kreta/Kreta.Client/FileService/Request/FileFinalizeRequestV3.cs
2024-03-13 00:33:46 +01:00

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; }
}
}