using Connected.Data; namespace Connected.Common.Types.Countries; public interface ICountry : IPrimaryKey { string Name { get; init; } int Lcid { get; init; } string IsoCode { get; init; } Status Status { get; init; } }