From ac769e656b122ff569c3f1534701b71e00fed586 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 27 Oct 2020 19:21:35 +0800 Subject: Split front and back end. --- Timeline/Models/Validation/TimelineNameValidator.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Timeline/Models/Validation/TimelineNameValidator.cs (limited to 'Timeline/Models/Validation/TimelineNameValidator.cs') diff --git a/Timeline/Models/Validation/TimelineNameValidator.cs b/Timeline/Models/Validation/TimelineNameValidator.cs deleted file mode 100644 index f1ab54e8..00000000 --- a/Timeline/Models/Validation/TimelineNameValidator.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; - -namespace Timeline.Models.Validation -{ - public class TimelineNameValidator : NameValidator - { - } - - [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, - AllowMultiple = false)] - public class TimelineNameAttribute : ValidateWithAttribute - { - public TimelineNameAttribute() - : base(typeof(TimelineNameValidator)) - { - - } - } -} -- cgit v1.2.3