subscription.hrl 190 B

12345678910111213
  1. -ifndef(SUBSCRIPTION_HRL).
  2. -define(SUBSCRIPTION_HRL, true).
  3. -record(subscription,{
  4. key,
  5. who,
  6. whom,
  7. what,
  8. how,
  9. date,
  10. note}).
  11. -endif.