mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-03-04 10:50:37 +00:00
12 lines
204 B
C#
12 lines
204 B
C#
namespace DSInternals.Common.Data
|
|
{
|
|
using System;
|
|
|
|
public interface ISchemaAttribute
|
|
{
|
|
int? Id { get; }
|
|
string Name { get; }
|
|
AttributeSyntax Syntax { get; }
|
|
}
|
|
}
|