// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Identity { /// /// Represents a message /// public class IdentityMessage { /// /// Destination, i.e. To email, or SMS phone number /// public virtual string Destination { get; set; } /// /// Subject /// public virtual string Subject { get; set; } /// /// Message contents /// public virtual string Body { get; set; } } }