1 //-----------------------------------------------------------------------
2 // <copyright file="TwitterHashTagEntity.cs" company="Patrick 'Ricky' Smith">
3 //  This file is part of the Twitterizer library (http://www.twitterizer.net)
4 //
5 //  Copyright (c) 2010, Patrick "Ricky" Smith (ricky@digitally-born.com)
6 //  All rights reserved.
7 //
8 //  Redistribution and use in source and binary forms, with or without modification, are
9 //  permitted provided that the following conditions are met:
10 //
11 //  - Redistributions of source code must retain the above copyright notice, this list
12 //    of conditions and the following disclaimer.
13 //  - Redistributions in binary form must reproduce the above copyright notice, this list
14 //    of conditions and the following disclaimer in the documentation and/or other
15 //    materials provided with the distribution.
16 //  - Neither the name of the Twitterizer nor the names of its contributors may be
17 //    used to endorse or promote products derived from this software without specific
18 //    prior written permission.
19 //
20 //  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
21 //  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 //  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 //  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
24 //  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 //  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 //  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 //  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 //  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 //  POSSIBILITY OF SUCH DAMAGE.
30 // </copyright>
31 // <author>Ricky Smith</author>
32 // <summary>The twitter hash tag entity class</summary>
33 //-----------------------------------------------------------------------
34 
35 namespace Twitterizer.Entities
36 {
37     /// <summary>
38     /// Represents a pre-parsed hash tag in a <see cref="Twitterizer.TwitterStatus.Text"/> value.
39     /// </summary>
40 #if !SILVERLIGHT
41     [System.Serializable]
42 #endif
43     public class TwitterHashTagEntity : TwitterEntity
44     {
45         /// <summary>
46         /// Gets or sets the hash tag text.
47         /// </summary>
48         /// <value>The hash tag text.</value>
49         public string Text { get; set; }
50     }
51 }
52