export class Day { public name: string; constructor(name: string) { this.name = name; } public static get PersianCollection() { return [ new Day('شنبه'), new Day('یکشنبه'), new Day('دوشنبه'), new Day('سه شنبه'), new Day('چهارشنبه'), new Day('پنجشنبه'), new Day('جمعه'), ]; } public static get EnglishCollection() { return [ new Day('Sunday'), new Day('Monday'), new Day('Tuesday'), new Day('Wednesday'), new Day('Thursday'), new Day('Friday'), new Day('Saturday'), ]; } }