13 lines
210 B
C#
13 lines
210 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.Infrastructures.CommonEnums
|
|
{
|
|
public enum CalcTerms
|
|
{
|
|
ShortTerm,
|
|
LongTerm,
|
|
}
|
|
}
|