zonering most basic flow

This commit is contained in:
2020-11-12 15:49:17 +01:00
parent 07985f6fcf
commit 5066969e98
10 changed files with 96 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
namespace FarmmapsZonering.Models
{
public class Output
{
public string Name { get; set; }
public string Quantity { get; set; }
public string Unit { get; set; }
}
}