Browse Source

feat: Modify the visibility of private constants

pull/1443/head
colin 5 days ago
parent
commit
f49060bdff
  1. 2
      aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/TimeZoneSettingsAppService.cs

2
aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/TimeZoneSettingsAppService.cs

@ -21,7 +21,7 @@ public class TimeZoneSettingsAppService : SettingManagementAppServiceBase, ITime
protected ISettingManager SettingManager { get; }
protected ITimezoneProvider TimezoneProvider { get; }
internal const string UnspecifiedTimeZone = "Unspecified";
private const string UnspecifiedTimeZone = "Unspecified";
public TimeZoneSettingsAppService(ISettingManager settingManager, ITimezoneProvider timezoneProvider)
{

Loading…
Cancel
Save