13 lines
235 B
C#
13 lines
235 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xorog.UniversalExtensions.Enums;
|
|
public enum TimeFormat
|
|
{
|
|
Minutes = 0,
|
|
Hours = 1,
|
|
Days = 2
|
|
}
|