1package catalog
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// FileType enumerates the values for file type.
10type FileType string
11
12const (
13	// Assembly ...
14	Assembly FileType = "Assembly"
15	// Resource ...
16	Resource FileType = "Resource"
17)
18
19// PossibleFileTypeValues returns an array of possible values for the FileType const type.
20func PossibleFileTypeValues() []FileType {
21	return []FileType{Assembly, Resource}
22}
23