mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-04 11:58:04 -05:00
8 lines
168 B
C#
8 lines
168 B
C#
namespace Domain.Models.Arr.Queue;
|
|
|
|
public record Image
|
|
{
|
|
public required string CoverType { get; init; }
|
|
|
|
public required Uri RemoteUrl { get; init; }
|
|
} |