Files
mixtape/zero.Core/Utils/TableBuilder/TableFormat.cs
T

13 lines
162 B
C#
Raw Normal View History

2020-10-07 16:08:09 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace zero.Core.Utils
{
public enum TableFormat
{
Csv = 0,
Excel = 1
}
}