aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Stubs Collection/stubs/Breathing LED Command.cs
blob: 7b75631d3be412ce753bf8415f4416035f3dbf6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35<
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.EmbroideryUI.Materials
{
    public class MicroFiber : IEmbroideryMaterial
    {
        public double Coefficient
        {
            get
            {
                return 1;
            }
        }

        public string Name
        {
            get
            {
                return "Micro Fiber";
            }
        }
    }
}