new note window

This commit is contained in:
Michele 2020-11-29 23:54:48 +00:00 committed by Michele Scandura
parent da302af8bf
commit ec98d53f48
5 changed files with 167 additions and 0 deletions

View file

@ -0,0 +1,11 @@
namespace Sledgemapper.Shared.Entities
{
public class Note :BaseMapEntity
{
public string Text { get; set; }
}
}