LeviLamina
Loading...
Searching...
No Matches
FileExtension.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::Profile {
6
7enum class FileExtension : uchar {
8 Html = 0,
9 Csv = 1,
10 Both = 2,
11};
12
13}