feat(Notes) notes are now markdown. Documents WIP

This commit is contained in:
2022-04-01 19:41:19 -04:00
parent 14ed0c3ea5
commit 596f82bc8c
19 changed files with 178 additions and 246 deletions
+10
View File
@@ -10,6 +10,7 @@ using Model.Immortal.Economy;
using Model.Immortal.Entity;
using Model.Immortal.Entity.Data;
using Model.Immortal.MemoryTester;
using Model.Immortal.Notes;
using Model.Website;
using Model.Website.Enums;
using Model.Work.Git;
@@ -82,6 +83,15 @@ public interface IAgileService {
public bool IsLoaded();
}
public interface INoteService {
public List<NoteModel> NoteModels { get; set; }
public void Subscribe(Action action);
public void Unsubscribe(Action action);
public void Update();
public Task Load();
public bool IsLoaded();
}
public interface IGitService {
#if NO_SQL