using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Core.CustomAttributes { [AttributeUsage(AttributeTargets.Property)] public class StringFormatAttribute : Attribute { public String Format { get; set; } public StringFormatAttribute() { Format = "0.0"; } public StringFormatAttribute(String format) : this() { Format = format; } } }