26 lines
754 B
C#
26 lines
754 B
C#
// 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
|
|
{
|
|
/// <summary>
|
|
/// Represents a message
|
|
/// </summary>
|
|
public class IdentityMessage
|
|
{
|
|
/// <summary>
|
|
/// Destination, i.e. To email, or SMS phone number
|
|
/// </summary>
|
|
public virtual string Destination { get; set; }
|
|
|
|
/// <summary>
|
|
/// Subject
|
|
/// </summary>
|
|
public virtual string Subject { get; set; }
|
|
|
|
/// <summary>
|
|
/// Message contents
|
|
/// </summary>
|
|
public virtual string Body { get; set; }
|
|
}
|
|
} |