19 lines
342 B
C#
19 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Volian.Base.Library
|
|
{
|
|
public static class BaseLnSettings
|
|
{
|
|
private static bool _blBaseLine = false;
|
|
public static bool blBaseLine
|
|
{
|
|
get { return _blBaseLine; }
|
|
set { _blBaseLine = value; }
|
|
}
|
|
}
|
|
}
|