AppSession.cs 370 Bytes
using HHECS.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Bll
{
    public static class AppSession
    {
        public static User User { get; set; }

        public static string ConnectionString { get; set; }

        public static string LogPath { get; set; }

    }
}