Files
wg_cpso/CPSO/Forms/44_SurfaceInteraction/ViewSurfaceInteractionProperty.cs

26 lines
881 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using DynamicTypeDescriptor;
namespace CPSO
{
[Serializable]
public abstract class ViewSurfaceInteractionProperty
{
// Variables
private DynamicCustomTypeDescriptor _dctd;
// Properties
public abstract string Name { get; }
//
[Browsable(false)]
public DynamicCustomTypeDescriptor DynamicCustomTypeDescriptor { get { return _dctd; } set { _dctd = value; } }
public abstract CaeModel.SurfaceInteractionProperty Base { get; }
}
}