feat(Notes) notes are now markdown. Documents WIP
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user