public Token(string name = "", Place location = null) { Id = Guid.NewGuid(); Name = name; Location = location ?? new Place(); }
public Token(string id, string name, Place location = null) { Id = new Guid(id); Name = name; Location = location ?? new Place(); }