如何定义包含名为“类型”的字段的记录?

时间:2019-01-11 03:09:23

标签: f#

是否可以定义包含“类型”字段的记录?例如:

type ProjectType= 
    | ObjectDetection 
    | Classification

type Domain =  {
    name:string;
    type: ProjectType; // How can I achieve this ?
    enabled:bool;
}

0 个答案:

没有答案