GeoFeed/AS1024.GeoFeed.Core.GeoFeed.../GeoFeedLocalCache/GeoFeedCacheEntry.cs

12 lines
239 B
C#

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