Skip to content
Snippets Groups Projects

New: Constant tag (coscine/issues#111)

Merged Benedikt Heinrichs requested to merge Product/111-constantTag into master
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