sledgemapper/Sledgemapper.Shared/Entities/Note.cs
Michele Scandura 5b7ad4f2ff
All checks were successful
continuous-integration/drone/push Build is passing
fix note bugs
2021-09-23 12:47:48 +01:00

23 lines
375 B
C#

namespace Sledgemapper.Shared.Entities
{
public class Note :BaseMapEntity
{
public Note(){}
public Note(Note n)
{
X=n.X;
Y=n.Y;
Text=n.Text;
ID = n.ID;
Rotation = n.Rotation;
Timestamp = n.Timestamp;
}
public string Text { get; set; }
}
}