-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIObjectJson.cs
More file actions
24 lines (22 loc) · 799 Bytes
/
IObjectJson.cs
File metadata and controls
24 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//-----------------------------------------------------------------------
// <copyright file="IObjectJson.cs" company="Studio A&T s.r.l.">
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
// <author>Nicogis</author>
namespace Studioat.ArcGis.Soe.Rest
{
using System.Diagnostics.CodeAnalysis;
using ESRI.ArcGIS.SOESupport;
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "-")]
/// <summary>
/// interface for conversion in JsonObjects
/// </summary>
internal interface IObjectJson
{
/// <summary>
/// conversion to a JsonObject
/// </summary>
/// <returns>return a JsonObject</returns>
JsonObject ToJsonObject();
}
}