Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FIT-Connect-SDK - .NET
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect-SDK - .NET
Commits
38f368cb
Commit
38f368cb
authored
5 months ago
by
Klaus Fischer
Browse files
Options
Downloads
Patches
Plain Diff
chore(WIP): clean up
parent
5e12a739
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!125
Feature/1522 chunking
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
FitConnect/Models/LargeAttachment.cs
+1
-5
1 addition, 5 deletions
FitConnect/Models/LargeAttachment.cs
with
1 addition
and
5 deletions
FitConnect/Models/LargeAttachment.cs
+
1
−
5
View file @
38f368cb
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment