8 lines
241 B
C#
8 lines
241 B
C#
namespace FJPSite.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
public class SeedMigrationAttribute(string migration) : Attribute
|
|
{
|
|
public string Migration { get; set; } = migration;
|
|
}
|