forked from Eauldane/SnowcloakServer
13 lines
300 B
C#
13 lines
300 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MareSynchronos.API.Dto.Files;
|
|
|
|
public class FilesSendDto
|
|
{
|
|
public List<string> FileHashes { get; set; } = new();
|
|
public List<string> UIDs { get; set; } = new();
|
|
} |