Archived
1
0

Updated StoreInterop class and ads appearing conditions

This commit is contained in:
Michael Gordeev
2019-11-10 21:34:01 +03:00
parent 1853d18fab
commit acd63a948e
7 changed files with 71 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FoxTube.Core
{
public static class Helpers
{
public static Uri ToUri(this string str) =>
string.IsNullOrWhiteSpace(str) ? null : new Uri(str);
}
}