AngularAzureSearch.WebAPI.Entities.ItemBase.ItemBase C# (CSharp) Метод

ItemBase() публичный Метод

All root entities inherit this base class.
public ItemBase ( string docType ) : Newtonsoft.Json
docType string The name of the type of entity (lowercase).
Результат Newtonsoft.Json
        public ItemBase(string docType)
        {
            this._docType = docType;
        }
ItemBase