diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-06-07 01:36:11 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-06-07 01:36:11 +0200 |
| commit | ecdaec6f53cbaf4da2c8a3440d7a288f3497a1cb (patch) | |
| tree | 651f9dd31e019f0b1d85f83a03553bb5812237cc /server/src/Data/Database/TodoLabel.cs | |
| parent | a8b44b09a404aee477e735501b828d1b14aad311 (diff) | |
| download | greatoffice-ecdaec6f53cbaf4da2c8a3440d7a288f3497a1cb.tar.xz greatoffice-ecdaec6f53cbaf4da2c8a3440d7a288f3497a1cb.zip | |
feat: Work in progress more module data models
Diffstat (limited to 'server/src/Data/Database/TodoLabel.cs')
| -rw-r--r-- | server/src/Data/Database/TodoLabel.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/server/src/Data/Database/TodoLabel.cs b/server/src/Data/Database/TodoLabel.cs new file mode 100644 index 0000000..7753ade --- /dev/null +++ b/server/src/Data/Database/TodoLabel.cs @@ -0,0 +1,8 @@ +namespace IOL.GreatOffice.Api.Data.Database; + +public class TodoLabel : BaseWithOwner +{ + public string Name { get; set; } + public string Color { get; set; } + public Todo Todo { get; set; } +} |
