15 lines
333 B
C#
15 lines
333 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
|
|||
|
class Fertilizer
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public float Nitrogen { get; set; }
|
|||
|
public float Phosphorus { get; set; }
|
|||
|
public float Potassium { get; set; }
|
|||
|
}
|