Skip to content

Commit 3898c38

Browse files
committed
Add a class to represent environmental info into the views.
1 parent 87e10a6 commit 3898c38

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
6+
namespace AngularGettingStarted.Models
7+
{
8+
public class EnvInfo
9+
{
10+
public bool Development { get; set; }
11+
public bool Production { get; set; }
12+
public string Version { get; set; }
13+
}
14+
}

0 commit comments

Comments
 (0)