using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CollaborativePlatformMain.CADStartUtil
{
///
///
/// 文件名(File Name): OpenDrawPathData.cs
///
/// 描述(Description): 打开图纸数据
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:15:12
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class OpenDrawPathData
{
public OpenDrawPathData()
{
}
public OpenDrawPathData(bool isOpen, string path)
{
IsOpen = isOpen;
Path = path;
}
///
/// 是否打开
///
public bool IsOpen { get; set; }
///
/// 图纸地址
///
public string Path { get; set; }
}
///
///
/// 文件名(File Name): TwoOpenData.cs
///
/// 描述(Description): 二次打开数据
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月8日11:15:12
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class TwoOpenData
{
public TwoOpenData()
{
}
public TwoOpenData(bool isOpen)
{
IsOpen = isOpen;
}
///
/// 是否打开
///
public bool IsOpen { get; set; }
}
///
///
/// 文件名(File Name): WholePictureData.cs
///
/// 描述(Description): 整图地址
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年5月10日09:56:41
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
[Serializable]
public class WholePictureData
{
public WholePictureData()
{
}
///
///
///
///
public WholePictureData(string path)
{
Path = path;
}
///
/// 整图地址
///
public string Path { get; set; }
}
}