Rename KgPerHa to MaxKgPerHa

This commit is contained in:
2023-07-13 21:37:41 +02:00
parent fd26ee4f52
commit f90319fc9f

View File

@ -10,7 +10,7 @@ namespace Elwig.Models {
[Column("name")] [Column("name")]
public string Name { get; set; } public string Name { get; set; }
[Column("kg_per_ha")] [Column("max_kg_per_ha")]
public int KgPerHa { get; set; } public int MaxKgPerHa { get; set; }
} }
} }