From 4556756703e3179a401ac2e451a45caf329418dd Mon Sep 17 00:00:00 2001 From: James Gunn Date: Thu, 19 Dec 2024 11:10:07 +0000 Subject: [PATCH] Remove un-used type (#1757) --- .../TeachingRecordSystem.SupportUi/ModelNameAttribute.cs | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/ModelNameAttribute.cs diff --git a/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/ModelNameAttribute.cs b/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/ModelNameAttribute.cs deleted file mode 100644 index 9be1b2b77..000000000 --- a/TeachingRecordSystem/src/TeachingRecordSystem.SupportUi/ModelNameAttribute.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace TeachingRecordSystem.SupportUi; - -[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] -public class ModelNameAttribute(string modelName) : Attribute -{ - public string ModelName { get; } = modelName; -}