9 lines
229 B
C#
9 lines
229 B
C#
using System;
|
|
|
|
namespace Cryville.Common.ComponentModel {
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
public class LogarithmicScaleAttribute : Attribute {
|
|
public LogarithmicScaleAttribute() { }
|
|
}
|
|
}
|