namespace Domain.Entities.Forum.Constants;
///
/// 댓글 설정 상수
///
public static class CommentConstant
{
///
/// 기본 출력 댓글 수
///
public const int DefaultPerPage = 10;
///
/// 최대 출력 댓글 수
///
public const byte MaxPerPage = 50;
///
/// 최대 댓글 길이
///
public const ushort MaxAllowedContentLength = 10000;
///
/// 최대 이미지 입력 제한 수
///
public const byte MaxAllowedImages = 10;
///
/// 최대 이미지 용량 (KB)
///
public const int MaxAllowedImageSize = 51200;
///
/// 허용 이미지 확장자
///
public const string AllowedImageExtensions = "jpg,jpeg,gif,png";
///
/// 최대 미디어 입력 제한 수
///
public const byte MaxAllowedMedias = 20;
///
/// 최대 파일 입력 제한 수
///
public const byte MaxAllowedFiles = 5;
///
/// 최대 파일 용량 (KB)
///
public const int MaxAllowedFileSize = 204800;
}