blob: b0b89a02a49cf7c5eb2a79c4c93f523c9b201ab1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//-----------------------------------------------------------------------
// <copyright file="TestMessageWithDate.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test.Mocks {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
internal class TestMessageWithDate : TestBaseMessage {
[MessagePart("ts", IsRequired = true)]
internal DateTime Timestamp { get; set; }
}
}
|