Syncshell Public & MCDF Share

This commit is contained in:
2025-11-01 19:55:54 +01:00
parent 0abb078c21
commit deb911cb0a
8 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace MareSynchronos.API.Dto.McdfShare;
public class McdfShareUpdateRequestDto
{
public Guid ShareId { get; set; }
public string Description { get; set; } = string.Empty;
public DateTime? ExpiresAtUtc { get; set; }
public List<string> AllowedIndividuals { get; set; } = [];
public List<string> AllowedSyncshells { get; set; } = [];
}