package models;

/**
 * Created by dom on 15/12/2018.
 * This is the actual job that is being asked from the designers its the product that will have many phases and associates will be chatting over it
 */
public class Graphic extends Document {

    public GraphicPhase phase; //PINAKAS


    public enum GraphicPhase {
        IDEA,
        DRAFTING,
        IN_REVIEW,
        REJECTED,
        APPROVED

    }
}
