diff --git a/webapp/src/Entity/Software.php b/webapp/src/Entity/Software.php
index 5e1a25b05e7afef2d1b96fc6478bd489ebf66c77..9a899fef7bd66b6671c29fd06cda07c9c1543416 100644
--- a/webapp/src/Entity/Software.php
+++ b/webapp/src/Entity/Software.php
@@ -13,8 +13,23 @@ class Software
     #[ORM\Column]
     private ?int $id = null;
 
+    #[ORM\Column(length: 125)]
+    private ?string $name = null;
+
     public function getId(): ?int
     {
         return $this->id;
     }
+
+    public function getName(): ?string
+    {
+        return $this->name;
+    }
+
+    public function setName(string $name): static
+    {
+        $this->name = $name;
+
+        return $this;
+    }
 }