Skip to content

Commit

Permalink
Merge pull request #1131 from ita-social-projects/develop
Browse files Browse the repository at this point in the history
Update master 31.01 11AM
  • Loading branch information
Oleh-Kril authored Jan 31, 2024
2 parents fa29015 + 086f166 commit 61192c2
Show file tree
Hide file tree
Showing 11 changed files with 1,843 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;

namespace Streetcode.BLL.DTO.Sources
{
public class StreetcodeCategoryContentDTO
{
[Required]
[MaxLength(10000)]
[MaxLength(15000)]
public string Text { get; set; }

[Required]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Streetcode.DAL.Entities.Sources;
public class StreetcodeCategoryContent
{
[Required]
[MaxLength(10000)]
[MaxLength(15000)]
public string? Text { get; set; }

[Required]
Expand Down
Loading

0 comments on commit 61192c2

Please sign in to comment.