Waste/Waste.Application/BaseInfoService.cs

18 lines
384 B
C#
Raw Permalink Normal View History

2021-05-27 16:58:40 +08:00
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"];
2021-05-30 16:02:38 +08:00
public OperatorModel currentUser = OperatorProvider.Provider.GetCurrent();
2021-05-27 16:58:40 +08:00
}
}