This commit is contained in:
mmrbnjd
2024-05-16 23:40:32 +03:30
parent 354316abba
commit 3ca7f9deb0
25 changed files with 7727 additions and 101 deletions

View File

@@ -0,0 +1,23 @@
using System.ComponentModel.DataAnnotations;
// ReSharper disable CheckNamespace
namespace Blazor.PersianDatePicker
{
public enum PickerTheme
{
[Display(Name = "default-theme")]
Default,
[Display(Name = "dark-theme")]
Dark,
[Display(Name = "blue-theme")]
Blue,
[Display(Name = "cheerup-theme")]
Cheerup,
[Display(Name = "redblack-theme")]
RedBlack
}
}