16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection.Metadata;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Avalonia.Media;
|
|
|
|
namespace PortfolioManager.UIUtils
|
|
{
|
|
public static class UIConstants
|
|
{
|
|
public const String CONST_ALL = "{ALL}";
|
|
}
|
|
}
|