You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
653 B
24 lines
653 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace connor_zwcadm.model {
|
|
public class FrameInfo {
|
|
public FrameInfo(string frame_Name, string title_Name, string bom_Name) {
|
|
Frame_Name = frame_Name;
|
|
Title_Name = title_Name;
|
|
Bom_Name = bom_Name;
|
|
}
|
|
|
|
public string Frame_Name { get; }
|
|
public string Title_Name { get; }
|
|
public string Bom_Name { get; }
|
|
|
|
public override string ToString() {
|
|
return string.Format("图框[{0}] 标题栏[{1}] 明细栏[{2}]", Frame_Name, Title_Name, Bom_Name);
|
|
}
|
|
}
|
|
}
|