mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
18 lines
395 B
C#
18 lines
395 B
C#
using System;
|
|
|
|
namespace TweetLib.Core.Features.Twitter {
|
|
public static class JQuery {
|
|
public static int GetDatePickerDayOfWeek(DayOfWeek dow) {
|
|
return dow switch {
|
|
DayOfWeek.Monday => 1,
|
|
DayOfWeek.Tuesday => 2,
|
|
DayOfWeek.Wednesday => 3,
|
|
DayOfWeek.Thursday => 4,
|
|
DayOfWeek.Friday => 5,
|
|
DayOfWeek.Saturday => 6,
|
|
_ => 0
|
|
};
|
|
}
|
|
}
|
|
}
|