Skip to content
Snippets Groups Projects
Commit 38f368cb authored by Klaus Fischer's avatar Klaus Fischer
Browse files

chore(WIP): clean up

parent 5e12a739
No related branches found
No related tags found
1 merge request!125Feature/1522 chunking
......@@ -8,11 +8,9 @@ public class LargeAttachment : Attachment {
private readonly string _mimeType;
private readonly ChunkSize? _chunkSize;
private readonly string? _description;
private readonly int? _maxFileSize;
private readonly string? _filename;
private readonly string? _tempFilePath;
private readonly Purpose _purpose;
public List<Chunk> Chunks { get; set; } = new List<Chunk>();
public List<Chunk> Chunks { get; set; } = new();
private string TempFilePath { get; set; }
public ChunkSize? ChunkSize { get; set; }
......@@ -118,8 +116,6 @@ public class LargeAttachment : Attachment {
_mimeType = mimeType;
_chunkSize = chunkSize;
_description = description;
_maxFileSize = maxFileSize;
_filename = filename;
_tempFilePath = tempFilePath;
_purpose = purpose;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment