file360

Log | Files | Refs

commit f5e70039e39d873bb65fc5f37b4bf02f1522018a
parent 6450e08713bf8e838696204a93cced9f39b8a297
Author: Bharatvaj Hemanth <bharatvaj@yahoo.com>
Date:   Thu,  3 Apr 2025 01:28:04 +0530

Update .gitignore

Update IBackgroundAudioUpdater.cs from slightly new file360

Diffstat:
M.gitignore | 3+++
AFile360/IBackgroundAudioUpdater.cs | 14++++++++++++++
2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,2 +1,5 @@ .vs/ Thumbs.db +packages/ +obj/ +bin/ diff --git a/File360/IBackgroundAudioUpdater.cs b/File360/IBackgroundAudioUpdater.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.ApplicationModel.Background; + +namespace File360 +{ + public interface IBackgroundAudioUpdater : IBackgroundTask + { + + } +}