You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
533 B
19 lines
533 B
![]()
2 years ago
|
//
|
||
|
// EBCalendarModel.h
|
||
|
// EBCalendarViewDemo
|
||
|
//
|
||
|
// Created by HoYo on 2018/4/25.
|
||
|
// Copyright © 2018年 HoYo. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface EBCalendarModel : NSObject
|
||
|
@property (nonatomic, assign) NSInteger year;
|
||
|
@property (nonatomic, assign) NSInteger month;
|
||
|
@property (nonatomic, assign) NSInteger day;
|
||
|
@property (nonatomic, assign, getter=isSelected) BOOL selected;
|
||
|
@property (nonatomic, assign, getter=isToday) BOOL today;
|
||
|
@property (nonatomic, strong, readonly) NSDate *date;
|
||
|
@end
|