Skip to content
Snippets Groups Projects

Add: On creating metadata some constants can be defined (coscine/issues#134)

Merged L. Ellenbeck requested to merge Topic/134-constantTag into Product/111-constantTag
3 files
+ 32
20
Compare changes
  • Side-by-side
  • Inline

Files

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