Commit 067125a7 authored by Peter Farago's avatar Peter Farago

Delete Count.java

parent 7d0ee5a9
package com.example.demo.controller;
public class Count
{
private Long count;
public Count()
{
}
public Long getCount()
{
return count;
}
public void setCount(Long count)
{
this.count = count;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment