diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.EmbroideryUI/Materials/MicroFiber.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.EmbroideryUI/Materials/MicroFiber.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.EmbroideryUI/Materials/MicroFiber.cs b/Software/Visual_Studio/Tango.EmbroideryUI/Materials/MicroFiber.cs new file mode 100644 index 000000000..51b16afe7 --- /dev/null +++ b/Software/Visual_Studio/Tango.EmbroideryUI/Materials/MicroFiber.cs @@ -0,0 +1,27 @@ +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"; + } + } + } +} |
