using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Profile; namespace Core.Helpers; public class DialogueHelper { /// /// Get the preview contents of the last message in a dialogue. /// /// /// MessagePreview public MessagePreview GetMessagePreview(Models.Eft.Profile.Dialogue dialogue) { throw new NotImplementedException(); } /// /// Get the item contents for a particular message. /// /// /// /// Item being moved to inventory /// public List GetMessageItemContents(string messageID, string sessionID, string itemId) { throw new NotImplementedException(); } /// /// Get the dialogs dictionary for a profile, create if doesn't exist /// /// Session/player id /// Dialog dictionary public Dictionary GetDialogsForProfile(string sessionId) { throw new NotImplementedException(); } }