Files
mixtape/zero.Core/Utils/TableBuilder/TableFormat.cs
T
2020-10-07 16:08:09 +02:00

13 lines
162 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace zero.Core.Utils
{
public enum TableFormat
{
Csv = 0,
Excel = 1
}
}