Skip to content
Snippets Groups Projects
Select Git revision
  • 939bb0fa8b2ebe8dc82d25b266b709b16ef98687
  • master default protected
  • dev protected
  • gitkeep
  • Issue/2463-newCoscinePIDTypes
  • Issue/2309-docs
  • Issue/2259-updatePids
  • Issue/1910-MigrationtoNET6.0
  • Sprint/2022-01
  • Sprint/2021-03
  • Product/1287-dotnet5Sharepoint
  • Topic/1334-dotnet5migration
  • Sprint/2021-01
  • Product/407-net5migration
  • Topic/1226-proxyApiLibraryMigration
  • v3.0.3
  • v3.0.2
  • v3.0.1
  • v3.0.0
  • v2.1.0
  • v2.0.0
  • v1.4.0
  • v1.3.0
  • v1.2.1
  • v1.2.0
  • v1.1.0
  • v1.0.0
27 results

PropertyDescription.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PropertyDescription.cs 415 B
    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;
            }
        }
    }