diff options
author | 杨宇千 <crupest@outlook.com> | 2019-11-03 00:28:21 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-11-03 00:28:21 +0800 |
commit | 71a444547673946a140db5bd0ed819932e392ccd (patch) | |
tree | be58859c6235b1be43bb0f989910257ce99f815b /Timeline/Services | |
parent | 2de7fa95bb5ad0a10f74fb390bac464a250dee42 (diff) | |
download | timeline-71a444547673946a140db5bd0ed819932e392ccd.tar.gz timeline-71a444547673946a140db5bd0ed819932e392ccd.tar.bz2 timeline-71a444547673946a140db5bd0ed819932e392ccd.zip |
Design the entity model primarily.
Diffstat (limited to 'Timeline/Services')
-rw-r--r-- | Timeline/Services/TimelineService.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Timeline/Services/TimelineService.cs b/Timeline/Services/TimelineService.cs new file mode 100644 index 00000000..e6a1e845 --- /dev/null +++ b/Timeline/Services/TimelineService.cs @@ -0,0 +1,12 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace Timeline.Services
+{
+ public interface ITimelineService
+ {
+ // TODO: Design this.
+ }
+}
|