namespace SpaceEngineersBlueprintEditor.Model;
///
/// 蓝图信息
///
/// 图片路径
/// 是否有蓝图文件
/// 是否有预览图片
/// 蓝图名称
/// 蓝图文件大小
/// 蓝图路径
public class BlueprintInfo(string imagePath, bool hasBlueprint, bool hasImage, string name, string fileSize, string blueprintPath)
{
///
/// 图片路径
///
public string ImagePath { get; set; } = imagePath;
///
/// 是否有蓝图
///
public bool HasBlueprint { get; set; } = hasBlueprint;
///
/// 是否有预览图片
///
public bool HasImage { get; set; } = hasImage;
///
/// 蓝图名称
///
public string Name { get; set; } = name;
///
/// 蓝图文件大小
///
public string FileSize { get; set; } = fileSize;
///
/// 蓝图路径
///
public string BlueprintPath { get; set; } = blueprintPath;
}