using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Data.Entities.Libraries
{
    /// 
    /// An entity that holds metadata for seasons.
    /// 
    public class SeasonMetadata : ItemMetadata
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The title or name of the object.
        /// ISO-639-3 3-character language codes.
        public SeasonMetadata(string title, string language) : base(title, language)
        {
        }
        /// 
        /// Gets or sets the outline.
        /// 
        /// 
        /// Max length = 1024.
        /// 
        [MaxLength(1024)]
        [StringLength(1024)]
        public string? Outline { get; set; }
    }
}