diff options
Diffstat (limited to 'Timeline/Models/Validation/TimelineNameValidator.cs')
-rw-r--r-- | Timeline/Models/Validation/TimelineNameValidator.cs | 19 |
1 files changed, 0 insertions, 19 deletions
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))
- {
-
- }
- }
-}
|