GeoFeed/AS1024.GeoFeed.Core.SqliteG.../GeoFeedCacheEntry.cs

12 lines
245 B
C#

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