mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
18 lines
365 B
Python
18 lines
365 B
Python
from pydantic import BaseModel, Field
|
|
from enum import Enum
|
|
from typing import List
|
|
from datetime import datetime
|
|
from typing import Optional
|
|
|
|
|
|
class ProgramTypeEnum(str, Enum):
|
|
DOMESTIC = "DOMESTIC"
|
|
ECONOMIC = "ECONOMIC"
|
|
COMMUNITY = "COMMUNITY"
|
|
|
|
|
|
class UserTypeEnum(str, Enum):
|
|
ADMIN = "ADMIN"
|
|
EMPLOYEE = "EMPLOYEE"
|
|
VOLUNTEER = "VOLUNTEER"
|