Files
LanMountainDesktop/LanMontainDesktop/Models/RecommendationDataModels.cs

22 lines
446 B
C#
Raw Normal View History

2026-03-04 02:02:34 +08:00
using System;
namespace LanMontainDesktop.Models;
public sealed record DailyArtworkSnapshot(
string Provider,
string Title,
string? Artist,
string? Year,
string? Museum,
string? ArtworkUrl,
string? ImageUrl,
DateTimeOffset FetchedAt);
public sealed record DailyPoetrySnapshot(
string Provider,
string Content,
string? Origin,
string? Author,
string? Category,
DateTimeOffset FetchedAt);