// Copyright (c) Arlo Godfrey. All Rights Reserved. // Licensed under the GNU Lesser General Public License, Version 3.0 with additional terms. // See the LICENSE, LICENSE.LESSER and LICENSE.ADDITIONAL files in the project root for more information. namespace StrixMusic.Sdk.FileMetadata.Models { /// /// Defines standard image sizes used by the application. /// public enum ImageSize { /// /// A 64x64 image. /// Tiny = 64, /// /// A 128x128 image. /// Small = 128, /// /// A 256x256 image. /// Medium = 256, /// /// A 512x512 image. /// Large = 512, /// /// A 1024x1024 image. /// ExtraLarge = 1024 } }