package com.arms.api.serverinfo.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.*;

import java.util.Date;

@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public class ServerInfo {

    private String connectId;

    private String type;

    private String userId;

    private String passwordOrToken;

    private String uri;

    private Date createdDate;

    private Date updatedDate;
}
