yavsc/src/Yavsc.Abstract/Interfaces/Models/ILocation.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

8 lines
No EOL
143 B
C#

namespace Yavsc.Interfaces
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}