using AS1024.GeoFeed.Models; using System.ComponentModel.DataAnnotations; namespace AS1024.GeoFeed.Core.GeoFeedSqliteLocalCache { public class GeoFeedCacheEntry : IPGeoFeed { [Key] public int Id { get; set; } } }