feat!: Add MustIncludeMinutes & MustIncludeSeconds

This commit is contained in:
Mira 2023-08-28 12:23:21 +02:00
parent bc8eb1ac0d
commit 3af891f809
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36
3 changed files with 48 additions and 29 deletions

View file

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Xorog.UniversalExtensions.Enums;
public enum TimeFormat
{
MINUTES,
HOURS,
DAYS
Minutes = 0,
Hours = 1,
Days = 2
}