mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-11-15 03:00:23 +00:00
13 lines
No EOL
287 B
C#
13 lines
No EOL
287 B
C#
using System;
|
|
|
|
namespace MonoStockPortfolio.Core
|
|
{
|
|
public class StringValueAttribute : Attribute
|
|
{
|
|
public string StringValue { get; protected set; }
|
|
public StringValueAttribute(string value)
|
|
{
|
|
StringValue = value;
|
|
}
|
|
}
|
|
} |