Skip to content

Commit

Permalink
캘린더 모델과 속성 정의
Browse files Browse the repository at this point in the history
  • Loading branch information
qodot committed Sep 15, 2023
1 parent fd2807a commit 5b21d04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/domain/entity/calendar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import datetime
import uuid


class Calendar:
id: uuid.UUID
name: str
birthday: datetime.date
lifespan: int
2 changes: 2 additions & 0 deletions test/domain/entity/test_calendar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class TestCalendar:
pass

0 comments on commit 5b21d04

Please sign in to comment.