8 lines
77 B
C#
8 lines
77 B
C#
namespace zero.Utils;
|
|
|
|
public enum TableFormat
|
|
{
|
|
Csv = 0,
|
|
Excel = 1
|
|
}
|