using System;

namespace EasyNet.Common
{
    public class IdInfo
    {
        public bool Strategy { get; set; } = false;

        public String Key { get; set; }

        public Object Value { get; set; }
    }
}