Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProxyApi
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
ProxyApi
Merge requests
!7
New: Constant tag (coscine/issues#111)
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
New: Constant tag (coscine/issues#111)
Product/111-constantTag
into
master
Overview
0
Commits
2
Pipelines
1
Changes
3
Merged
Benedikt Heinrichs
requested to merge
Product/111-constantTag
into
master
5 years ago
Overview
0
Commits
2
Pipelines
1
Changes
3
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
992563c5
2 commits,
5 years ago
3 files
+
32
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
src/ProxyApi/Utils/PropertyDescription.cs
0 → 100644
+
19
−
0
View file @ 992563c5
Edit in single-file editor
Open in Web IDE
using
System.Runtime.Serialization
;
namespace
Coscine.ProxyApi.Utils
{
[
DataContract
]
public
class
PropertyDescription
{
[
DataMember
]
public
string
Value
{
get
;
set
;
}
[
DataMember
]
public
string
Type
{
get
;
set
;
}
public
PropertyDescription
(
string
value
,
string
type
)
{
this
.
Value
=
value
;
this
.
Type
=
type
;
}
}
}
Loading