package com.example.demo.dto;

import java.util.UUID;

public class EndpointDeleteDTO {

	private UUID endpoint_id;
	private UUID deleted_by;
	
	public UUID getEndpoint_id() {
		return endpoint_id;
	}
	public void setEndpoint_id(UUID endpoint_id) {
		this.endpoint_id = endpoint_id;
	}
	public UUID getDeleted_by() {
		return deleted_by;
	}
	public void setDeleted_by(UUID deleted_by) {
		this.deleted_by = deleted_by;
	}
	
	
}
