mateusz-opoka/KustoWrapper-Schema-AttributeMappings

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

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace KustoWrapper.Schema.AttributeMappings.Attributes
{
    [AttributeUsage(AttributeTargets.Class)]
    public class KustoTableAttribute : Attribute
    {
        public string TableName { get; }

        public KustoTableAttribute(string tableName)
        {
            TableName = tableName;
        }
    }
}