From 05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33 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