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