Files
LightlessServer/LightlessAPI/LightlessSyncAPI/Dto/Files/FilesSendDto.cs
2025-08-27 03:02:29 +02:00

13 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LightlessSync.API.Dto.Files;
public class FilesSendDto
{
public List<string> FileHashes { get; set; } = new();
public List<string> UIDs { get; set; } = new();
}