mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
16 lines
339 B
C#
16 lines
339 B
C#
|
namespace Giants.Launcher
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
public class ApplicationNames
|
|||
|
{
|
|||
|
public const string Giants = nameof(Giants);
|
|||
|
|
|||
|
public const string GiantsLauncher = nameof(GiantsLauncher);
|
|||
|
}
|
|||
|
}
|