namespace Domain.Entities.Forum.Constants; /// /// 게시글 설정 상수 /// public static class PostConstant { /// /// 최대 제목 길이 /// public const byte MaxAllowedSubjectLength = 120; /// /// 최대 본문 길이 /// public const ushort MaxAllowedContentLength = 5000; /// /// 최대 태그 입력 제한 수 /// public const byte MaxAllowedTags = 10; /// /// 최대 이미지 입력 제한 수 /// public const byte MaxAllowedImages = 50; /// /// 최대 이미지 용량 (KB) /// public const int MaxAllowedImageSize = 51200; /// /// 허용 이미지 확장자 /// public const string AllowedImageExtensions = "jpg,jpeg,gif,png"; /// /// 최대 미디어 입력 제한 수 /// public const byte MaxAllowedMedias = 20; /// /// 최대 파일 입력 제한 수 /// public const byte MaxAllowedFiles = 10; /// /// 최대 파일 용량 (KB) /// public const int MaxAllowedFileSize = 204800; }