------------------Show Code ( lines)------------------
package com.todomvc.shared.model;
1

Represents objects who can be uniquely identified in the app.

public interface HasID {

    String getId();

}