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 project is archived. Its data is
read-only
.
Show more breadcrumbs
Coscine
backend
libraries
ProxyApi
Merge requests
!6
Add: On creating metadata some constants can be defined (coscine/issues#134)
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add: On creating metadata some constants can be defined (coscine/issues#134)
Topic/134-constantTag
into
Product/111-constantTag
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Add: On creating metadata some constants can be defined (coscine/issues#134)
L. Ellenbeck
requested to merge
Topic/134-constantTag
into
Product/111-constantTag
Jul 1, 2019
Overview
0
Commits
1
Pipelines
1
Changes
3
coscine/issues#134
0
0
Merge request reports
Compare
Product/111-constantTag
Product/111-constantTag (base)
and
latest version
latest version
939bb0fa
1 commit,
Jul 1, 2019
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 @ 939bb0fa
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