2020-03-22 20:42:55 +05:30
|
|
|
// Copyright 2017 The Xorm Authors. All rights reserved.
|
2019-06-23 20:52:43 +05:30
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2020-03-22 20:42:55 +05:30
|
|
|
package convert
|
2016-11-04 03:46:01 +05:30
|
|
|
|
|
|
|
// Conversion is an interface. A type implements Conversion will according
|
|
|
|
// the custom method to fill into database and retrieve from database.
|
|
|
|
type Conversion interface {
|
|
|
|
FromDB([]byte) error
|
|
|
|
ToDB() ([]byte, error)
|
|
|
|
}
|