2023-05-18 19:43:43 +00:00
|
|
|
package fields
|
|
|
|
|
|
|
|
var Currency = struct {
|
|
|
|
ID string
|
|
|
|
Name string
|
|
|
|
Currencies string
|
2023-06-16 09:47:11 +00:00
|
|
|
IsDeleted string
|
2023-05-18 19:43:43 +00:00
|
|
|
CreatedAt string
|
|
|
|
UpdatedAt string
|
|
|
|
DeletedAt string
|
|
|
|
}{
|
|
|
|
ID: "_id",
|
|
|
|
Name: "name",
|
|
|
|
Currencies: "currencies",
|
2023-06-16 09:47:11 +00:00
|
|
|
IsDeleted: "isDeleted",
|
2023-05-18 19:43:43 +00:00
|
|
|
CreatedAt: "createdAt",
|
|
|
|
UpdatedAt: "updatedAt",
|
|
|
|
DeletedAt: "deletedAt",
|
|
|
|
}
|