├── LICENSE ├── README.md └── SugarRestSharpSolution ├── SugarCrm.PocoGen.Console ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarCrm.PocoGen.Console.csproj └── packages.config ├── SugarCrm.PocoGen ├── DbServerProviderName.cs ├── DbServerType.cs ├── ModelTemplate.cs ├── Models │ ├── Column.cs │ ├── Key.cs │ ├── Table.cs │ ├── Tables.cs │ └── Utils.cs ├── Properties │ └── AssemblyInfo.cs ├── Readers │ ├── MySqlSugarSchemaReader.cs │ ├── SchemaReader.cs │ └── SchemaReaderProvider.cs ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarCrm.PocoGen.csproj ├── Templates │ ├── ModelTemplate.cs │ └── ModelTemplate.tt ├── app.config └── packages.config ├── SugarRestSharp.IntegrationTests ├── AccountsModuleTests.cs ├── ContactsModuleTests.cs ├── CustomModels │ ├── CustomAcccount1.cs │ ├── CustomAcccount2.cs │ └── CustomAcccount3.cs ├── Helpers │ ├── AccountsModule.cs │ ├── ContactsModule.cs │ └── LinkedModules.cs ├── LinkedModulesTests.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryTests.cs ├── SugarRestSharp.IntegrationTests.csproj ├── TestAccount.cs ├── WikiTester.cs └── packages.config ├── SugarRestSharp ├── ErrorCodes.cs ├── Options.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryOperator.cs ├── QueryPredicate.cs ├── RequestType.cs ├── RestApiCalls │ ├── EntityBase.cs │ ├── Helpers │ │ ├── DeserializerExceptionsContractResolver.cs │ │ ├── JsonConverterHelper.cs │ │ ├── JsonExtensions.cs │ │ ├── ModelnfoExtensions.cs │ │ └── QueryBuilder.cs │ ├── MethodCalls │ │ ├── Authentication.cs │ │ ├── DeleteEntry.cs │ │ ├── GetEntry.cs │ │ ├── GetEntryList.cs │ │ ├── GetLinkedEntry.cs │ │ ├── GetLinkedEntryList.cs │ │ ├── GetPagedEntryList.cs │ │ ├── InsertEntries.cs │ │ ├── InsertEntry.cs │ │ ├── UpdateEntries.cs │ │ ├── UpdateEntry.cs │ │ └── Util.cs │ ├── ModelInfo.cs │ ├── ModelProperty.cs │ ├── ModulePropertyAttribute.cs │ ├── Requests │ │ ├── JsonPredicate.cs │ │ └── LoginRequest.cs │ ├── Responses │ │ ├── BaseResponse.cs │ │ ├── DeleteEntryResponse.cs │ │ ├── EntryListArray.cs │ │ ├── ErrorResponse.cs │ │ ├── Extensions │ │ │ └── LinkedEntryListExtensions.cs │ │ ├── InsertEntriesResponse.cs │ │ ├── InsertEntryResponse.cs │ │ ├── LinkedListModule.cs │ │ ├── LinkedListModuleData.cs │ │ ├── LinkedModuleData.cs │ │ ├── LinkedRecordItem.cs │ │ ├── LoginResponse.cs │ │ ├── ReadEntryListResponse.cs │ │ ├── ReadEntryResponse.cs │ │ ├── ReadLinkedEntryListResponse.cs │ │ ├── ReadLinkedEntryResponse.cs │ │ ├── UpdateEntriesResponse.cs │ │ └── UpdateEntryResponse.cs │ ├── RestClientExtensions.cs │ └── SugarApiRestResponse.cs ├── StyleCop.Cache ├── SugarCrmModels │ ├── Account.cs │ ├── AccountsAudit.cs │ ├── AccountsBugs.cs │ ├── AccountsCases.cs │ ├── AccountsContacts.cs │ ├── AccountsOpportunities.cs │ ├── AclActions.cs │ ├── AclRoles.cs │ ├── AclRolesActions.cs │ ├── AclRolesUsers.cs │ ├── AddressBook.cs │ ├── Bug.cs │ ├── BugsAudit.cs │ ├── Call.cs │ ├── CallsContacts.cs │ ├── CallsLeads.cs │ ├── CallsUsers.cs │ ├── Campaign.cs │ ├── CampaignLog.cs │ ├── CampaignTrkrs.cs │ ├── CampaignsAudit.cs │ ├── Case.cs │ ├── CasesAudit.cs │ ├── CasesBugs.cs │ ├── Config.cs │ ├── Contact.cs │ ├── ContactsAudit.cs │ ├── ContactsBugs.cs │ ├── ContactsCases.cs │ ├── ContactsUsers.cs │ ├── CronRemoveDocuments.cs │ ├── Currency.cs │ ├── CustomFields.cs │ ├── Document.cs │ ├── DocumentRevisions.cs │ ├── DocumentsAccounts.cs │ ├── DocumentsBugs.cs │ ├── DocumentsCases.cs │ ├── DocumentsContacts.cs │ ├── DocumentsOpportunities.cs │ ├── Eapm.cs │ ├── Email.cs │ ├── EmailAddrBeanRel.cs │ ├── EmailAddresses.cs │ ├── EmailCache.cs │ ├── EmailMarketing.cs │ ├── EmailMarketingProspectLists.cs │ ├── EmailTemplates.cs │ ├── Emailman.cs │ ├── EmailsBeans.cs │ ├── EmailsEmailAddrRel.cs │ ├── EmailsText.cs │ ├── FieldsMetaData.cs │ ├── Folder.cs │ ├── FoldersRel.cs │ ├── FoldersSubscriptions.cs │ ├── ImportMaps.cs │ ├── InboundEmail.cs │ ├── InboundEmailAutoreply.cs │ ├── InboundEmailCacheTs.cs │ ├── JobQueue.cs │ ├── Lead.cs │ ├── LeadsAudit.cs │ ├── LinkedDocuments.cs │ ├── Meeting.cs │ ├── MeetingsContacts.cs │ ├── MeetingsLeads.cs │ ├── MeetingsUsers.cs │ ├── Note.cs │ ├── OauthConsumer.cs │ ├── OauthNonce.cs │ ├── OauthTokens.cs │ ├── OpportunitiesAudit.cs │ ├── OpportunitiesContacts.cs │ ├── Opportunity.cs │ ├── OutboundEmail.cs │ ├── Project.cs │ ├── ProjectTask.cs │ ├── ProjectTaskAudit.cs │ ├── ProjectsAccounts.cs │ ├── ProjectsBugs.cs │ ├── ProjectsCases.cs │ ├── ProjectsContacts.cs │ ├── ProjectsOpportunities.cs │ ├── ProjectsProducts.cs │ ├── Prospect.cs │ ├── ProspectListCampaigns.cs │ ├── ProspectLists.cs │ ├── ProspectListsProspects.cs │ ├── Relationship.cs │ ├── Release.cs │ ├── Role.cs │ ├── RolesModules.cs │ ├── RolesUsers.cs │ ├── SavedSearch.cs │ ├── Scheduler.cs │ ├── Sugarfeed.cs │ ├── Task.cs │ ├── Tracker.cs │ ├── UpgradeHistory.cs │ ├── User.cs │ ├── UserPreferences.cs │ ├── UsersFeeds.cs │ ├── UsersLastImport.cs │ ├── UsersPasswordLink.cs │ ├── UsersSignatures.cs │ ├── Vcal.cs │ └── Version.cs ├── SugarRestClient.cs ├── SugarRestClientExtensions.cs ├── SugarRestRequest.cs ├── SugarRestResponse.cs ├── SugarRestSharp.1.0.0.nupkg ├── SugarRestSharp.csproj ├── SugarRestSharp.nuspec └── packages.config └── SugarRestSharpSolution.sln /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/README.md -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/App.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/Program.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/Settings.StyleCop -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/StyleCop.Cache -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/SugarCrm.PocoGen.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/SugarCrm.PocoGen.Console.csproj -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen.Console/packages.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/DbServerProviderName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/DbServerProviderName.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/DbServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/DbServerType.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/ModelTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/ModelTemplate.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Models/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Models/Column.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Models/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Models/Key.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Models/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Models/Table.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Models/Tables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Models/Tables.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Models/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Models/Utils.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Readers/MySqlSugarSchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Readers/MySqlSugarSchemaReader.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Readers/SchemaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Readers/SchemaReader.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Readers/SchemaReaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Readers/SchemaReaderProvider.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Settings.StyleCop -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/StyleCop.Cache -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/SugarCrm.PocoGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/SugarCrm.PocoGen.csproj -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Templates/ModelTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Templates/ModelTemplate.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/Templates/ModelTemplate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/Templates/ModelTemplate.tt -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/app.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarCrm.PocoGen/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarCrm.PocoGen/packages.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/AccountsModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/AccountsModuleTests.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/ContactsModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/ContactsModuleTests.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount1.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount2.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/CustomModels/CustomAcccount3.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/AccountsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/AccountsModule.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/ContactsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/ContactsModule.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/LinkedModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Helpers/LinkedModules.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/LinkedModulesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/LinkedModulesTests.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/QueryTests.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/SugarRestSharp.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/SugarRestSharp.IntegrationTests.csproj -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/TestAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/TestAccount.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/WikiTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/WikiTester.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp.IntegrationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp.IntegrationTests/packages.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/ErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/ErrorCodes.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/Options.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/QueryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/QueryOperator.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/QueryPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/QueryPredicate.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RequestType.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/EntityBase.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/DeserializerExceptionsContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/DeserializerExceptionsContractResolver.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/JsonConverterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/JsonConverterHelper.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/JsonExtensions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/ModelnfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/ModelnfoExtensions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Helpers/QueryBuilder.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/Authentication.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/DeleteEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/DeleteEntry.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetEntry.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetEntryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetEntryList.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetLinkedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetLinkedEntry.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetLinkedEntryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetLinkedEntryList.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetPagedEntryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/GetPagedEntryList.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/InsertEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/InsertEntries.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/InsertEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/InsertEntry.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/UpdateEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/UpdateEntries.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/UpdateEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/UpdateEntry.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/MethodCalls/Util.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModelInfo.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModelProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModelProperty.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModulePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/ModulePropertyAttribute.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Requests/JsonPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Requests/JsonPredicate.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Requests/LoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Requests/LoginRequest.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/BaseResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/DeleteEntryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/DeleteEntryResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/EntryListArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/EntryListArray.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ErrorResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/Extensions/LinkedEntryListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/Extensions/LinkedEntryListExtensions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/InsertEntriesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/InsertEntriesResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/InsertEntryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/InsertEntryResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedListModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedListModule.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedListModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedListModuleData.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedModuleData.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedRecordItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LinkedRecordItem.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/LoginResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadEntryListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadEntryListResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadEntryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadEntryResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadLinkedEntryListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadLinkedEntryListResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadLinkedEntryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/ReadLinkedEntryResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/UpdateEntriesResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/UpdateEntriesResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/UpdateEntryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/Responses/UpdateEntryResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/RestClientExtensions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/RestApiCalls/SugarApiRestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/RestApiCalls/SugarApiRestResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/StyleCop.Cache -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Account.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsBugs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsCases.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsOpportunities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AccountsOpportunities.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclActions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRoles.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRolesActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRolesActions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRolesUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AclRolesUsers.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AddressBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/AddressBook.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Bug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Bug.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/BugsAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/BugsAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Call.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsLeads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsLeads.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CallsUsers.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Campaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Campaign.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignLog.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignTrkrs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignTrkrs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignsAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CampaignsAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Case.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Case.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CasesAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CasesAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CasesBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CasesBugs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Config.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Contact.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsBugs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsCases.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ContactsUsers.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CronRemoveDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CronRemoveDocuments.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Currency.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CustomFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/CustomFields.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Document.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentRevisions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentRevisions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsAccounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsAccounts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsBugs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsCases.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsOpportunities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/DocumentsOpportunities.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Eapm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Eapm.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Email.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailAddrBeanRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailAddrBeanRel.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailAddresses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailAddresses.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailCache.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailMarketing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailMarketing.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailMarketingProspectLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailMarketingProspectLists.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailTemplates.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Emailman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Emailman.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsBeans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsBeans.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsEmailAddrRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsEmailAddrRel.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/EmailsText.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FieldsMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FieldsMetaData.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Folder.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FoldersRel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FoldersRel.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FoldersSubscriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/FoldersSubscriptions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ImportMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ImportMaps.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmail.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmailAutoreply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmailAutoreply.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmailCacheTs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/InboundEmailCacheTs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/JobQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/JobQueue.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Lead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Lead.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/LeadsAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/LeadsAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/LinkedDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/LinkedDocuments.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Meeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Meeting.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsLeads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsLeads.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/MeetingsUsers.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Note.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthConsumer.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthNonce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthNonce.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OauthTokens.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OpportunitiesAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OpportunitiesAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OpportunitiesContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OpportunitiesContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Opportunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Opportunity.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OutboundEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/OutboundEmail.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Project.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectTask.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectTaskAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectTaskAudit.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsAccounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsAccounts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsBugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsBugs.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsCases.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsContacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsContacts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsOpportunities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsOpportunities.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProjectsProducts.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Prospect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Prospect.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectListCampaigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectListCampaigns.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectLists.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectListsProspects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/ProspectListsProspects.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Relationship.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Release.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Role.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/RolesModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/RolesModules.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/RolesUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/RolesUsers.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/SavedSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/SavedSearch.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Scheduler.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Sugarfeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Sugarfeed.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Task.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Tracker.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UpgradeHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UpgradeHistory.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/User.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UserPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UserPreferences.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersFeeds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersFeeds.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersLastImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersLastImport.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersPasswordLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersPasswordLink.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersSignatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/UsersSignatures.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Vcal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Vcal.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarCrmModels/Version.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestClient.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestClientExtensions.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestRequest.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestResponse.cs -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.1.0.0.nupkg -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.csproj -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/SugarRestSharp.nuspec -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharp/packages.config -------------------------------------------------------------------------------- /SugarRestSharpSolution/SugarRestSharpSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarRestSharp/HEAD/SugarRestSharpSolution/SugarRestSharpSolution.sln --------------------------------------------------------------------------------