cloutier--bird.makeup/src/DataAccessLayers/BirdsiteLive.DAL/Models/CachedTweet.cs

10 lines
222 B
C#
Raw Normal View History

2020-07-05 20:22:34 -04:00
namespace BirdsiteLive.DAL.Models
{
public class CachedTweet
{
public long Id { get; set; }
public long TwitterUserId { get; set; }
public string TweetData { get; set; }
}
}