customer/internal/fields/history.go
2023-06-22 09:36:43 +00:00

24 lines
413 B
Go

package fields
var History = struct {
ID string
UserID string
Comment string
Subject string
Type string
IsDeleted string
CreatedAt string
UpdatedAt string
DeletedAt string
}{
ID: "_id",
UserID: "userId",
Comment: "comment",
Subject: "subject",
Type: "type",
IsDeleted: "isDeleted",
CreatedAt: "createdAt",
UpdatedAt: "updatedAt",
DeletedAt: "deletedAt",
}