/**
 * Copyright (c) 2023 ListBird. All Rights Reserved.
 *
 * This software product includes software or other works developed by RESO,
 * subject to the RESO End User License published at www.reso.org.
 *
 * Any modifications, derivative works, or redistributions of this source must
 * maintain this copyright notice. See the RESO EULA for more information.
 */

export enum Skirt {
  /**
   * The mobile/manufactured home has a skirt made of aluminum.
   */
  Aluminum = 'Aluminum',

  /**
   * The mobile/manufactured home has a skirt made of block.
   */
  Block = 'Block',

  /**
   * The mobile/manufactured home has a skirt made of brick.
   */
  Brick = 'Brick',

  /**
   * The mobile/manufactured home has a skirt made of a combination of materials.
   */
  Combination = 'Combination',

  /**
   * The mobile/manufactured home has a skirt made of concrete.
   */
  Concrete = 'Concrete',

  /**
   * The mobile/manufactured home has a skirt made of fiberglass.
   */
  Fiberglass = 'Fiberglass',

  /**
   * The mobile/manufactured home has a skirt that is framed.
   */
  Frame = 'Frame',

  /**
   * The mobile/manufactured home has a skirt made of glass.
   */
  Glass = 'Glass',

  /**
   * The mobile/manufactured home has a skirt made of Masonite.
   */
  Masonite = 'Masonite',

  /**
   * The mobile/manufactured home has a skirt made of metal.
   */
  Metal = 'Metal',

  /**
   * The mobile/manufactured home does not have a skirt.
   */
  None = 'None',

  /**
   * The mobile/manufactured home has a skirt made of materials other than those in this list.
   */
  Other = 'Other',

  /**
   * {@link https://ddwiki.reso.org/display/DDW17/Steel}
   *
   * The mobile/manufactured home has a skirt made of steel.
   */
  Steel = 'Steel',

  /**
   * The mobile/manufactured home has a skirt made of stone.
   */
  Stone = 'Stone',

  /**
   * The mobile/manufactured home has a skirt made of stucco.
   */
  Stucco = 'Stucco',

  /**
   * The mobile/manufactured home has a skirt made of synthetic materials.
   */
  Synthetic = 'Synthetic',

  /**
   * The mobile/manufactured home has a skirt made of unknown materials.
   */
  Unknown = 'Unknown',

  /**
   * {@link https://ddwiki.reso.org/display/DDW17/Vinyl}
   *
   * The mobile/manufactured home has a skirt made of vinyl.
   */
  Vinyl = 'Vinyl',

  /**
   * The mobile/manufactured home has a skirt made of wood.
   */
  Wood = 'Wood',
}
