summaryrefslogtreecommitdiff
path: root/Models/Figure.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-02-21 07:52:11 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-02-21 07:52:11 +0300
commit0107d5b518f586bc2172b4e89f0cab7619e76670 (patch)
tree60a93c8b8c9ebb2bef218280a2ee8d6f4e6a7019 /Models/Figure.cs
parent3c83f9f4b01b5965e04739e5f8accf3235f8f699 (diff)
Add decription to figure model
Diffstat (limited to 'Models/Figure.cs')
-rw-r--r--Models/Figure.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/Models/Figure.cs b/Models/Figure.cs
index 7ac5b5f..f63d842 100644
--- a/Models/Figure.cs
+++ b/Models/Figure.cs
@@ -1,8 +1,9 @@
namespace MyDarling.Models
{
- public class Figure
- {
- public int Id { get; set; }
- public string FilePath { get; set; } = string.Empty;
- }
+ public class Figure
+ {
+ public int Id { get; set; }
+ public string Description { get; set; } = string.Empty;
+ public string FilePath { get; set; } = string.Empty;
+ }
} \ No newline at end of file