Syncshell Public & MCDF Share
This commit is contained in:
17
MareSynchronosAPI/Dto/McdfShare/McdfShareUploadRequestDto.cs
Normal file
17
MareSynchronosAPI/Dto/McdfShare/McdfShareUploadRequestDto.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MareSynchronos.API.Dto.McdfShare;
|
||||
|
||||
public class McdfShareUploadRequestDto
|
||||
{
|
||||
public Guid ShareId { get; set; }
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public byte[] CipherData { get; set; } = Array.Empty<byte>();
|
||||
public byte[] Nonce { get; set; } = Array.Empty<byte>();
|
||||
public byte[] Salt { get; set; } = Array.Empty<byte>();
|
||||
public byte[] Tag { get; set; } = Array.Empty<byte>();
|
||||
public DateTime? ExpiresAtUtc { get; set; }
|
||||
public List<string> AllowedIndividuals { get; set; } = [];
|
||||
public List<string> AllowedSyncshells { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user