13 lines
296 B
C#
13 lines
296 B
C#
using System;
|
|
|
|
namespace Cryville.Common.ComponentModel {
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
|
|
public class PrecisionAttribute : Attribute {
|
|
public PrecisionAttribute(double precision) {
|
|
Precision = precision;
|
|
}
|
|
|
|
public double Precision { get; set; }
|
|
}
|
|
}
|