Current section
Files
Jump to
Current section
Files
include/contract.hrl
-ifndef(CONTRACT_HRL).
-define(CONTRACT_HRL, true).
-include("erp/organization.hrl").
-record('Contract', { id = [] :: [] | binary(),
prev = [] :: [] | binary(),
next = [] :: [] | binary(),
nane = [] :: [] | binary(),
parties = [] :: [] | list(#'Organization'{}),
rules = [] :: term() }).
-endif.