-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
19 lines (14 loc) · 962 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections.Generic;
namespace Common.Lib
{
public static class Constants
{
public static List<string> PhotoFileExtensions = new List<string> { ".jpg", ".jpeg", ".gif", ".png" };
public static List<string> VideoFileExtensions = new List<string> { ".avi", ".mov", ".dat", ".wmv", ".mpeg", ".xvid", ".mpeg4", ".mpg", ".mp4" };
public static string[] gunler = { "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar" };
public static string[] mevsimler = { "İlkbahar", "Yaz", "Sonbahar", "Kış" };
public static string[] months = { "january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december" };
public static string[] aylar = { "ocak", "şubat", "mart", "nisan", "mayıs", "haziran", "temmuz", "ağustos", "eylül", "ekim", "kasım", "aralık" };
public static char[] alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToCharArray();
}
}