namespace View_by_Distance.Shared.Models.Stateless;
///
/// Specifies the part of face.
///
public enum FacePart
{
///
/// Specifies the chin.
///
Chin,
///
/// Specifies the left eyebrow.
///
LeftEyebrow,
///
/// Specifies the right eyebrow.
///
RightEyebrow,
///
/// Specifies the nose bridge.
///
NoseBridge,
///
/// Specifies the nose tip.
///
NoseTip,
///
/// Specifies the left eye.
///
LeftEye,
///
/// Specifies the right eye.
///
RightEye,
///
/// Specifies the top lip.
///
TopLip,
///
/// Specifies the bottom lip.
///
BottomLip,
///
/// Specifies the nose.
///
Nose,
}