DSInternals/Src/DSInternals.Common/Data/Schema/ISchemaAttribute.cs

12 lines
204 B
C#
Raw Normal View History

2015-12-26 22:44:43 +00:00
namespace DSInternals.Common.Data
{
using System;
public interface ISchemaAttribute
{
int? Id { get; }
string Name { get; }
AttributeSyntax Syntax { get; }
}
}