using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bitsplash.DatePicker
{
public enum WeekDaysLayout
{
///
/// do not show week day names
///
None,
///
/// show short week day names
///
Short,
///
/// show full week day names
///
Full
}
}