Can now authneticate via Icarus. Next is to setup the Song view and test streaming.

This commit is contained in:
amazing-username
2019-05-27 14:48:20 -04:00
parent 55940deda1
commit 1962979271
18 changed files with 268 additions and 34 deletions
+26
View File
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Mear.Constants.App
{
public class Info
{
#region Fields
private static string _appName = "Mear";
private static string _appVersion = "Dev Pre-release";
#endregion
#region Properties
public static string AppName
{
get => _appName;
}
public static string AppVersion
{
get => _appVersion;
}
#endregion
}
}