ADPAPIClient.NamedEntity.NamedEntity C# (CSharp) Method

NamedEntity() public method

public NamedEntity ( int id, String value, string description ) : System
id int
value String
description string
return System
        public NamedEntity(int id,String value, string description)
        {
            this.Id = id;
            this.Value = value;
            this.Description = description;
        }
NamedEntity