prima release sito MP-API (MVC/API )

This commit is contained in:
Samuele E. Locatelli
2016-12-23 15:59:04 +01:00
parent 7cbb526b65
commit 5ad2701d4b
178 changed files with 55172 additions and 0 deletions
@@ -0,0 +1,37 @@
using System;
namespace MP_API.Areas.HelpPage
{
/// <summary>
/// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class.
/// </summary>
public class TextSample
{
public TextSample(string text)
{
if (text == null)
{
throw new ArgumentNullException("text");
}
Text = text;
}
public string Text { get; private set; }
public override bool Equals(object obj)
{
TextSample other = obj as TextSample;
return other != null && Text == other.Text;
}
public override int GetHashCode()
{
return Text.GetHashCode();
}
public override string ToString()
{
return Text;
}
}
}