mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
22 lines
446 B
C#
22 lines
446 B
C#
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);
|