summaryrefslogtreecommitdiffstats
path: root/src/khevent.rs
blob: b3c10a257d31a816b9f8cef414003ea699ec142e (plain)
1
2
3
4
5
6
7
8
9
use crate::icalwrap::IcalTime;

pub trait KhEvent {
  fn get_start(&self) -> Option<IcalTime>;
  fn get_end(&self) -> Option<IcalTime>;
  fn is_recur_master(&self) -> bool;
}