using SteUp.Shared.Core.Dto; namespace SteUp.Shared.Core.Interface.System; public interface IAttachedService { Task SelectImageFromCamera(); Task SelectImageFromGallery(); Task SaveToTempStorage(Stream file, string fileName, CancellationToken ct = default); Task OpenFile(string fileName, string filePath); }