using Core.Abstractions.Models;
namespace WeatherForecast.Models.Abstractions.PostItem.Requests {
  /// 
  /// 
  /// 
  /// 
  public abstract class PostItemRequestModelBase : RequestModelBase {
    /// 
    /// 
    /// 
    public List? L10n { get; set; }
    /// 
    /// 
    /// 
    public List? MediaAttachments { get; set; }
    /// 
    /// 
    /// 
    public List? Categories { get; set; }
    /// 
    /// 
    /// 
    public List? Tags { get; set; }
    /// 
    /// 
    /// 
    public bool? FamilyFriendly { get; set; }
  }
}