File: System\DirectoryServices\AccountManagement\AD\QBEMatchType.cs
Web Access
Project: src\src\runtime\src\libraries\System.DirectoryServices.AccountManagement\src\System.DirectoryServices.AccountManagement.csproj (System.DirectoryServices.AccountManagement)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;

namespace System.DirectoryServices.AccountManagement
{
    internal sealed class QbeMatchType
    {
        private object _value;
        private MatchType _matchType;

        internal QbeMatchType(object value, MatchType matchType)
        {
            _value = value;
            _matchType = matchType;
        }

        internal object Value
        {
            get
            {
                return _value;
            }
            set
            {
                _value = value;
            }
        }

        internal MatchType Match
        {
            get
            {
                return _matchType;
            }
            set
            {
                _matchType = value;
            }
        }
    }
}