HI1Object.cs 291 Bytes
Newer Older
namespace PolymorphicDeSerialization.Models
{
    public class HI1Object
    {
        public string ObjectIdentifier { get; set; }
        public int Generation { get; set; }

        public void ToString()
        {
            Console.WriteLine(this.GetType().Name);
        }
    }
}