SpecialMeasure.cs 332 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PaintDotNet.GeneralAnalysis.Special
  7. {
  8. public enum SpecialItem
  9. {
  10. AREA = 0, // 面积含量
  11. LENGTH = 1 // 长度
  12. }
  13. public class SpecialMeasure
  14. {
  15. }
  16. }