-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Newest plug-in fixes/development changes added with latest executable.
- Loading branch information
1 parent
48ffe98
commit 6cdf119
Showing
15 changed files
with
3,182 additions
and
448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* Outlook integration for SuiteCRM. | ||
* @package Outlook integration for SuiteCRM | ||
* @copyright SalesAgility Ltd http://www.salesagility.com | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | ||
* along with this program; if not, see http://www.gnu.org/licenses | ||
* or write to the Free Software Foundation,Inc., 51 Franklin Street, | ||
* Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* @author SalesAgility <[email protected]> | ||
*/ | ||
|
||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SuiteCRMClient.RESTObjects | ||
{ | ||
public class eGetRelationshipResult | ||
{ | ||
[JsonProperty("entry_list")] | ||
public eEntryValue[] entry_list { get; set; } | ||
[JsonProperty("relationship_list")] | ||
public eEntryValue[] relationship_list { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.