namespace Galaeth.Core.Attributes.EntityAnnotation;
///
/// Treat this property as the primary key in the database.
///
[AttributeUsage(AttributeTargets.Property)]
public class PrimaryKeyAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
/// If the primary key auto-generated by the database.
public PrimaryKeyAttribute(bool autoGenerated = false)
{
AutoGenerated = autoGenerated;
}
///
/// Should this primary key be auto-generated by the database? (i.e. Auto incrementing).
///
public bool AutoGenerated { get; }
}