namespace File_Folder_Helper.Models.Face; /// /// Specifies the part of face. /// public enum FacePart { /// /// Specifies the chin. /// Chin = 0, /// /// Specifies the left eyebrow. /// LeftEyebrow = 17, /// /// Specifies the right eyebrow. /// RightEyebrow = 22, /// /// Specifies the nose bridge. /// NoseBridge = 27, /// /// Specifies the nose tip. /// NoseTip = 31, /// /// Specifies the left eye. /// LeftEye = 36, /// /// Specifies the right eye. /// RightEye = 42, /// /// Specifies the top lip. /// TopLip = 48, /// /// Specifies the bottom lip. /// BottomLip = 55 }