using Connected.Data;
namespace Connected.Common.Types.Continent;
public interface IContinent : IPrimaryKey<int>
{
string Name { get; init; }
}