package entity import ( "time" ) const ( StorageLocal = "local" StorageS3 = "s3" ) type File struct { Id string Storage string FileName string Size int64 CreatedAt time.Time }