lucidiot/HabitSharp
lucidiot
/
HabitSharp
Archived
1
0
Fork 0

Incomplete notification class

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

9
Notification.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
namespace HabitSharp {
public class Notification {
public Guid Id { get; set; }
public bool Seen { get; set; }
public string Type { get; set; }
}
}