Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Nov 4, 2020
1 parent fc263f5 commit a9b2a6f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions starsky/starsky.foundation.platform/Models/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,38 @@ private void CreateDefaultFolders()
#endif
public StarskyAppType ApplicationType { get; set; }

/// <summary>
/// What is the type of the application that is running different CLI types or Web
/// </summary>
public enum StarskyAppType
{
/// <summary>
/// Mvc controller / Web interface
/// </summary>
WebController = 0,
/// <summary>
/// Importer CLI
/// </summary>
Importer = 1,
/// <summary>
/// Sync CLI
/// </summary>
Sync = 2,
/// <summary>
/// WebHTML CLI
/// </summary>
WebHtml = 3,
/// <summary>
/// Geo CLI
/// </summary>
Geo = 4,
/// <summary>
/// WebFTP CLI
/// </summary>
WebFtp = 5,
/// <summary>
/// Admin CLI
/// </summary>
Admin = 6,
}

Expand Down

0 comments on commit a9b2a6f

Please sign in to comment.