blob: 364377a117e2f61f75ca7e42cce4da46849e970b [file] [log] [blame]
class Blog {
@Property Long id;
@Property Long version;
@Property relationships = [ "entries" : Entry.class ]
@Property User owner
@Property String name
@Property Set entries = new HashSet()
@Property constraints = {
name(blank:false)
}
}