-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppInfo.cs
32 lines (22 loc) · 925 Bytes
/
AppInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OnlineExaminationSystem
{
public class AppInfo
{
public static string DbName = "examination_system";
public static string SoftwareName = "Online Examination System";
public static string SoftwareShortName = "OESys";
public static string OwnerName = "Saad";
public static string OwnerMobile = "8884291607";
public static string OwnerEmail = "saad.surana@gmail.com";
public static string OwnerAddress = "Surana College<br>Bangalore 560 004";
public static string FbURL = "https://facebook.com";
public static string InstaURL = "https://instagram.com";
// Other configs
// bottom-left, bottom-right, bottom-center, top-right, top-left, top-center, mid-center
public static string ToastPosition = "top-right";
}
}