lucidiot/HabitSharp
lucidiot
/
HabitSharp
Archived
1
0
Fork 0

Tag class

This commit is contained in:
Lucidiot 2018-08-31 00:42:29 +02:00
parent e6007489fe
commit 75d3ba597d
No known key found for this signature in database
GPG Key ID: AE3F7205692FA205
1 changed files with 9 additions and 0 deletions

9
Tag.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
namespace HabitSharp {
public class Tag {
public Guid Id { get; set; }
public string Name { get; set; }
public bool Challenge { get; set; }
}
}