using Comal.Classes; using InABox.Core; using InABox.Poster.MYOB; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PRS.Shared.Posters.MYOB; public class InvoiceMYOBPoster : IMYOBPoster { public MYOBPosterSettings Settings { get; set; } public MYOBGlobalPosterSettings GlobalSettings { get; set; } public MYOBConnectionData ConnectionData { get; set; } public IPostResult Process(IDataModel model) { return new PostResult(); } }