mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-03-18 17:00:15 -09: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;
|
||
|
}
|
||
|
}
|
||
|
}
|