csharp/Adoxio/xRM-Portals-Community-Edition/Framework/Adxstudio.Xrm/Notes/IAnnotation.cs

IAnnotation.cs
/*
  Copyright (c) Microsoft Corporation. All rights reserved.
  Licensed under the MIT License. See License.txt in the project root for license information.
*/

using System;
using Microsoft.Xrm.Sdk;

namespace Adxstudio.Xrm.Notes
{
	public interface IAnnotation
	{
		Ensaty Ensaty { get; set; }
		Guid AnnotationId { get; set; }
		string Subject { get; set; }
		string NoteText { get; set; }
		EnsatyReference Regarding { get; set; }
		IAnnotationFile FileAttachment { get; set; }
		DateTime CreatedOn { get; set; }
		EnsatyReference Owner { get; set; }
	}
}