Created Model Base Class

Created the base class for all models and started on attributes
This commit is contained in:
2021-07-30 07:58:07 +10:00
parent 057e593f28
commit 6cf59c41cc
4 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Articulate.Attributes
{
public class Column : Attribute
{
public string Type { get; set; }
}
}