mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
10 lines
216 B
C#
10 lines
216 B
C#
using BirdsiteLive.DAL.Models;
|
|
|
|
namespace BirdsiteLive.Pipeline.Models
|
|
{
|
|
public class TweetToDelete
|
|
{
|
|
public SyncTweet Tweet { get; set; }
|
|
public bool DeleteSuccessful { get; set; }
|
|
}
|
|
} |