10 lines
221 B
C#
10 lines
221 B
C#
|
|
namespace AnimeAnnouncer.Cache
|
|
{
|
|
public class AiringSoonItem
|
|
{
|
|
public required String Title { get; set; }
|
|
public int ShowID { get; set; }
|
|
public DateTime? LastAirDate { get; set; }
|
|
}
|
|
} |