36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="LastModified.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>fiedlchr</author>
|
|
// <sience>05.09.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
namespace CampusAppWP8.Utility.ICSProperties
|
|
{
|
|
using CampusAppWP8.Utility;
|
|
|
|
/// <summary>Last modified property class. </summary>
|
|
/// <remarks>Fiedler, 05.09.2013. </remarks>
|
|
/// <see cref="http://tools.ietf.org/html/rfc5545#section-3.8.7.3"/>
|
|
public class LastModified : DTCreated // because has same structure
|
|
{
|
|
/// <summary>The name.</summary>
|
|
public static new readonly string Name = ICSTag.DT_MODIFIED;
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="LastModified" /> class.</summary>
|
|
/// <remarks>Fiedler, 05.09.2013. </remarks>
|
|
public LastModified()
|
|
: base()
|
|
{
|
|
this.privateName = this.GetName();
|
|
}
|
|
|
|
/// <summary>Gets the name. </summary>
|
|
/// <remarks>Fiedler, 05.09.2013. </remarks>
|
|
/// <returns>The name. </returns>
|
|
public override string GetName()
|
|
{
|
|
return LastModified.Name;
|
|
}
|
|
}
|
|
} |