package com.example.demo.CommonSubAPIDto;

public class DirectOrProgrammaticDTO {
	private int typeId;
	private String type;

	public int getTypeId() {
		return typeId;
	}

	public void setTypeId(int typeId) {
		this.typeId = typeId;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

}
