using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreenTree.Nachtragsmanagement.Core.Domain.User
{
public class Function : BaseEntity
{
///
/// Name
///
public string Name { get; set; }
///
/// Description
///
public string Description { get; set; }
///
/// Parent function name
///
public string GroupName { get; set; }
///
/// Image url
///
public string ImageUrl { get; set; }
///
/// Route name
///
public string RouteName { get; set; }
///
/// Base width in pixel
///
public int? BaseWidth { get; set; }
///
/// Minimum width in pixel
///
public int? MinWidth { get; set; }
///
/// Base height in pixel
///
public int? BaseHeight { get; set; }
///
/// Minimum height in pixel
///
public int? MinHeight { get; set; }
///
/// Allow window maximization
///
public bool? AllowMaximize { get; set; }
}
}