mateusz-opoka/KustoWrapper-Schema-AttributeMappings

View on GitHub
src/KustoWrapper.Schema.AttributeMappings/Models/KustoColumnInfo.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace KustoWrapper.Schema.AttributeMappings.Models
{
    public class KustoColumnInfo
    {
        public string Name { get; }
        public Type Type { get; }
        public string SourcePropertyName { get; }

        public KustoColumnInfo(string name, Type type, string sourcePropertyName)
        {
            Name = name;
            Type = type;
            SourcePropertyName = sourcePropertyName;
        }
    }
}