customer/internal/fields/history.go

24 lines
411 B
Go
Raw Normal View History

2023-05-23 10:52:27 +00:00
package fields
var History = struct {
ID string
UserID string
Comment string
Subject string
Type string
Deleted string
CreatedAt string
UpdatedAt string
DeletedAt string
}{
ID: "_id",
UserID: "userId",
Comment: "comment",
Subject: "subject",
Type: "type",
Deleted: "deleted",
CreatedAt: "createdAt",
UpdatedAt: "updatedAt",
DeletedAt: "deletedAt",
}