18 lines
391 B
C#
18 lines
391 B
C#
|
|
using Furion;
|
|||
|
|
using Nirvana.Common;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Waste.Application
|
|||
|
|
{
|
|||
|
|
public class BaseInfoService
|
|||
|
|
{
|
|||
|
|
public static string CDNURL = App.Configuration["CDNURL"];
|
|||
|
|
|
|||
|
|
public static OperatorModel currentUser = OperatorProvider.Provider.GetCurrent();
|
|||
|
|
}
|
|||
|
|
}
|