mateusz-opoka/KustoWrapper-Schema-AttributeMappings

View on GitHub
src/KustoWrapper.Schema.AttributeMappings/Attributes/KustoColumnAttribute.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace KustoWrapper.Schema.AttributeMappings.Attributes
{
    [AttributeUsage(AttributeTargets.Property)]
    public class KustoColumnAttribute : Attribute
    {
        public string ColumnName { get; }

        public KustoColumnAttribute() { }

        public KustoColumnAttribute(string columnName)
        {
            ColumnName = columnName;
        }
    }
}