From 0750b0fc9ae5696520b6f79498e1c5431c352e3e Mon Sep 17 00:00:00 2001 From: eugeniy_ivanov Date: Fri, 10 Mar 2023 10:34:03 +0500 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=20=D0=BB?= =?UTF-8?q?=D0=B8=D1=88=D0=BD=D0=B8=D0=B9=20=D0=BC=D1=83=D1=81=D0=BE=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AsbCloudApp/Data/FileInfoDto.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/AsbCloudApp/Data/FileInfoDto.cs b/AsbCloudApp/Data/FileInfoDto.cs index c9e91df4..1d5c0431 100644 --- a/AsbCloudApp/Data/FileInfoDto.cs +++ b/AsbCloudApp/Data/FileInfoDto.cs @@ -57,13 +57,6 @@ namespace AsbCloudApp.Data /// /// список отметок файла /// - public IEnumerable FileMarks { get; set; } = Enumerable.Empty(); - - //RuleFor(x => x.IdWell).GreaterThan(0) - // .WithMessage("Id скважины не может быть меньше 1"); - //RuleFor(x => x.IdCategory).GreaterThan(0) - // .WithMessage("Id категории файла не может быть меньше 1"); - //RuleFor(x => x.Name).Length(1, 260) - // .WithMessage("Допустимое имя файла от 1 до 260 символов"); + public IEnumerable FileMarks { get; set; } = Enumerable.Empty(); } }