Skip to content

Commit 58105c3

Browse files
committed
feat: ✨ add transit edge
1 parent d8e928e commit 58105c3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module SharedDomain
2+
module Model
3+
class TransitEdge < ValueObject
4+
attribute :voyage_number, Types::String
5+
attribute :from_un_locode, Types::String
6+
attribute :to_un_locode, Types::String
7+
attribute :from_date, Types::DateTime
8+
attribute :to_date, Types::DateTime
9+
end
10+
end
11+
end

0 commit comments

Comments
 (0)