package work import "github.com/google/uuid" // WorkDTO is a read model for a work, containing only the data needed for API responses. type WorkDTO struct { ID uuid.UUID Title string Language string }