mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 08:04:26 +08:00
12 lines
267 B
C#
12 lines
267 B
C#
namespace Plonds.Shared.Models;
|
|
|
|
public sealed record PlondsChannelPointer(
|
|
string Channel,
|
|
string Platform,
|
|
string DistributionId,
|
|
string Version,
|
|
DateTimeOffset PublishedAt,
|
|
string? DistributionPath = null,
|
|
string? FileMapPath = null);
|
|
|