Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • 1-implementacion-inicial
2 results

Noticia.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Noticia.java 223 B
    package supuestoPractico;
    
    public class Noticia {
    	private String titulo;
    	private String fecha;
    	private Categorias cat;
    	
    	public Noticia(Categorias a) {
    		cat = a;
    	}
    	
    	public static void main(String[] args) {
    		
    	}
    
    }